1
0
mirror of https://github.com/KubaPro010/fm-dx-webserver.git synced 2026-02-26 22:13:53 +01:00

admin dashboard, bugfixes, cleanup

This commit is contained in:
NoobishSVK
2024-03-19 22:16:24 +01:00
parent fa20a50e3e
commit 9499d99c7b
12 changed files with 221 additions and 259 deletions

View File

@@ -50,7 +50,7 @@ h4 {
border-radius: 30px;
padding: 5px 25px;
z-index: 1000;
opacity:var(--color-main);
opacity: 0;
transition: opacity 0.3s ease-in-out;
}
@@ -248,6 +248,42 @@ label {
opacity: 0; /* Make the overlay invisible */
}
.admin-quick-dashboard {
position: absolute;
top: 0;
bottom: 0;
left: -96px;
width: 96px;
height: 286px;
background-color: var(--color-2);
margin: auto 0;
border-radius: 30px;
padding-top: 15px;
}
.admin-quick-dashboard .icon {
width: 72px;
height: 72px;
margin: 10px auto;
color: var(--color-1);
background-color: var(--color-3);
display: flex;
justify-content: center;
align-items: center;
font-size: 24px;
border-radius: 10px;
transition: 0.3s ease-in-out background-color;
cursor: pointer;
}
.admin-quick-dashboard .icon.active {
background-color: var(--color-4);
}
.admin-quick-dashboard .icon:hover {
background-color: var(--color-5);
}
@media (max-width: 768px) {
canvas, #flags-container {
display: none;