You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
499 B
34 lines
499 B
|
|
.menu {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
background-color: #000000;
|
|
padding: 10px 20px;
|
|
}
|
|
|
|
.menu ul {
|
|
display: flex;
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.menu ul li {
|
|
margin: 0 15px;
|
|
align-self: center;
|
|
}
|
|
|
|
.menu ul li:first-child {
|
|
margin-right: auto;
|
|
}
|
|
|
|
.menu ul li a {
|
|
color: white;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.menu ul li a:hover {
|
|
text-decoration: underline;
|
|
} |