changed design, added dockerfile

This commit is contained in:
2026-05-02 22:45:03 +02:00
parent d801d6d59d
commit 8c49ac0066
9 changed files with 74 additions and 46 deletions
+14 -4
View File
@@ -1,11 +1,21 @@
#navbar-main {
width: 90%;
width: 100%;
height: 80px;
display: flex;
gap: 20px;
justify-content: center;
align-items: center;
background-color: rgb(25, 100, 126);
border-bottom-left-radius: 40px;
border-bottom-right-radius: 40px;
border-bottom: 1px solid rgb(47, 168, 208);
}
.navbar-item {
text-decoration: none;
height: 80px;
width: 120px;
display: flex;
align-items: center;
justify-content: center;
}
.navbar-item:hover {
background-color: rgb(47, 168, 208);
}