40 lines
571 B
CSS
40 lines
571 B
CSS
.navbar {
|
|
background: #fff;
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
padding: 1rem 0;
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 100;
|
|
}
|
|
|
|
.navContainer {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 1rem;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.navLogo {
|
|
font-size: 1.5rem;
|
|
font-weight: bold;
|
|
color: #0070f3;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.navMenu {
|
|
display: flex;
|
|
gap: 1.5rem;
|
|
align-items: center;
|
|
}
|
|
|
|
.navLink {
|
|
color: #333;
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.navLink:hover {
|
|
color: #0070f3;
|
|
} |