68 lines
940 B
CSS
68 lines
940 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
|
|
.navbar {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
background-color: #333;
|
|
padding: 10px 20px;
|
|
}
|
|
|
|
.logo {
|
|
color: white;
|
|
font-size: 24px;
|
|
}
|
|
|
|
.nav-links {
|
|
list-style: none;
|
|
display: flex;
|
|
}
|
|
|
|
.nav-links li {
|
|
margin-left: 20px;
|
|
}
|
|
|
|
.nav-links a {
|
|
color: white;
|
|
text-decoration: none;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.burger {
|
|
display: none;
|
|
cursor: pointer;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
height: 21px;
|
|
}
|
|
|
|
.burger div {
|
|
width: 25px;
|
|
height: 3px;
|
|
background-color: white;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.nav-links {
|
|
display: none;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
}
|
|
|
|
.nav-links.active {
|
|
display: flex;
|
|
}
|
|
|
|
.burger {
|
|
display: flex;
|
|
}
|
|
}
|