NavBar v.0.0.1

This commit is contained in:
Nirodan
2025-07-07 10:57:18 +02:00
parent 537df29737
commit d927679667
10 changed files with 150 additions and 38 deletions
+33
View File
@@ -0,0 +1,33 @@
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
background-color: var(--navbar-bg, #282c34);
padding: 10px 20px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
color: white;
}
.navbar-left button,
.navbar-right button {
background-color: transparent;
border: none;
color: inherit;
font-size: 16px;
cursor: pointer;
margin-right: 10px;
padding: 5px 10px;
transition: background-color 0.2s;
}
.navbar-left button:hover,
.navbar-right button:hover {
background-color: rgba(255, 255, 255, 0.1);
border-radius: 5px;
}
.navbar-right {
display: flex;
align-items: center;
gap: 10px;
}