| 123456789101112131415161718 |
- .nav{
- height: 75px;
- padding: 10px;
- background: #2e2d2d;
- color: #165CA1;
- align-items: center;
- justify-content: flex-start;
- }
- .nav ul{
- justify-content: center;
- align-items: right;
- list-style: none;
- }
- .nav ul li a {
- height: 100px;
- display: flex;
- margin: 10px 20px;
- }
|