60 lines
910 B
CSS

.navbar {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #0b0b0b;
padding: 10px 20px;
gap: 10px;
}
.navbar-logo {
display: flex;
align-items: center;
gap: 15px;
}
.navbar-logo .logo {
height: 50px;
border-radius: 10px;
}
.navbar-links {
display: flex;
flex-direction: row;
gap: 10px;
}
.navbar-links a {
color: white;
text-decoration: none;
font-family: 'Arial', sans-serif;
font-size: 16px;
}
.navbar-links a:hover {
text-decoration: underline;
}
.navbar-title h1 {
color: white;
font-family: 'Arial', sans-serif;
font-size: 24px;
margin: 0;
}
.navbar-icons {
display: flex;
align-items: center;
gap: 15px;
}
.navbar-icons .icon {
height: 30px;
width: 30px;
transition: transform 0.2s;
}
.navbar-icons .icon:hover {
transform: scale(1.1);
}