html_css
1.list {2margin: 0;3padding: 0;4list-style: none;5}
6.list li {7margin-bottom: 8px;8border-bottom: 1px solid grey;9}
10.table {11width: 100%;12}
13.table td {14text-align: center;15padding-bottom: 10px;16}
17.table td:hover{18background: #eeefff;19}
20/*подсветить каждую четную строку*/
21.table tr:nth-child(even) {22background: #eee;23}
24/* неченый */
25/*.table tr:nth-child(odd) {
26background: #eee;
27}*/
28/* Подсветить столбец */
29.table td:nth-child(2), .table td:nth-child(4){30background: #fffeee;31}
32.navbar {33background: lightcoral;34/*padding: 10px 20px;*/35margin-bottom: 10px;36}
37
38.navbar ul {39list-style: none;40margin: 0;41padding: 0;42display: flex;43padding: 0 20px;44}
45
46.navbar ul li {47margin-right: 10px;48padding: 10px;49}
50
51.navbar ul li:hover {52background: #ea6767;53}
54.navbar ul li:last-child {55margin-right: 0px;56}