37 lines
604 B
CSS
37 lines
604 B
CSS
.navbar {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
padding: 10px 20px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
background-color: var(--background-color);
|
|
z-index: 1000;
|
|
}
|
|
|
|
.navbar-left,
|
|
.navbar-right {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 20px;
|
|
}
|
|
|
|
.navbar a,
|
|
.navbar button {
|
|
background: none;
|
|
border: none;
|
|
color: var(--text);
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
padding: 6px 12px;
|
|
transition: background-color 0.3s;
|
|
}
|
|
|
|
.navbar a:hover,
|
|
.navbar button:hover {
|
|
background-color: var(--accent-hover);
|
|
border-radius: 4px;
|
|
}
|