18 lines
252 B
CSS
18 lines
252 B
CSS
nav {
|
|
background-color: black;
|
|
color: white;
|
|
}
|
|
|
|
ul {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-evenly;
|
|
margin: 0;
|
|
padding: 10px;
|
|
list-style: none;
|
|
}
|
|
|
|
ul a {
|
|
color: white;
|
|
text-decoration: none;
|
|
} |