update colors + bugfixes

This commit is contained in:
2023-10-07 16:55:42 +02:00
parent 5d55140681
commit 033fdf3483
7 changed files with 52 additions and 36 deletions

View File

@@ -17,7 +17,7 @@ html, body {
}
body {
background-color: #7c8cec;
background-color: #648cab;
}
.dev {

View File

@@ -10,18 +10,18 @@
.side-nav-container {
min-height: 100vh;
width: 100%;
background-color: rgb(0, 0, 49);
background-color: rgb(30, 30, 82);
}
.side-nav-item {
width: 90%;
padding: 3% 5%;
display: block;
background-color: rgb(16, 16, 46);
background-color: rgb(30, 30, 82);
color: white;
text-decoration: none;
cursor: pointer;
transition: all 0.5s;
transition: 1s;
}
@@ -29,11 +29,11 @@
width: 85%;
padding: 2% 5% 2% 10%;
display: block;
background-color: rgb(16, 16, 46);
background-color: rgb(26, 26, 71);
color: white;
text-decoration: none;
cursor: pointer;
transition: all 0.5s;
transition: 1s;
}
.side-dropdown {
@@ -41,5 +41,6 @@
}
.side-nav-item:hover, .side-nav-subitem:hover, .active {
background-color: rgb(0, 0, 133);
background-color: #648cab;
transition: 0.4s;
}

View File

@@ -19,7 +19,7 @@ html, body {
body {
height: 100vh;
display: grid;
background-color: #7c8cec;
background-color: #648cab;
grid-template-areas:
'header header header header header'
'menu main main main main'