unified some styles, especially in #id_dash_gear menu
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Disco DeDisco
2026-03-09 14:57:39 -04:00
parent 251b3bf778
commit a53dc41367
2 changed files with 47 additions and 4 deletions

View File

@@ -175,12 +175,18 @@ body {
a { a {
font-size: 1.75rem; font-size: 1.75rem;
color: rgba(var(--quaUser), 1); color: rgba(var(--quaUser), 0.9);
text-shadow: 0 0 1rem rgba(var(--quiUser), 1); text-shadow:
0 0 0.25rem rgba(0, 0, 0, 0.5),
;
&:hover { &:hover {
color: rgba(var(--quaUser), 1); color: rgba(var(--quaUser), 1);
text-shadow: 0 0 0.5rem rgba(var(--ninUser), 0.5); text-shadow:
0 0 1rem rgba(0, 0, 0, 0.25),
0 0 0.5rem rgba(var(--ninUser), 0.25)
;
} }
} }
} }

View File

@@ -56,6 +56,10 @@ body.page-dashboard {
z-index: 100; z-index: 100;
background-color: rgba(var(--priUser), 0.95); background-color: rgba(var(--priUser), 0.95);
border: 0.15rem solid rgba(var(--secUser), 0.5); border: 0.15rem solid rgba(var(--secUser), 0.5);
box-shadow:
0.1rem 0.1rem 0.12rem rgba(var(--priUser), 0.5),
0.12rem 0.12rem 0.5rem rgba(0, 0, 0, 0.25),
;
border-radius: 0.75rem; border-radius: 0.75rem;
padding: 1rem; padding: 1rem;
@@ -64,6 +68,39 @@ body.page-dashboard {
gap: 0.25rem; gap: 0.25rem;
margin-top: 0.75rem; margin-top: 0.75rem;
} }
form {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
input[type="checkbox"] {
appearance: none;
-webkit-appearance: none;
width: 0.9em;
height: 0.9em;
border: 0.1rem solid rgba(var(--secUser), 0.4);
border-radius: 0.25rem;
background: transparent;
cursor: pointer;
position: relative;
flex-shrink: 0;
top: 0.1em;
&:checked::after {
content: '';
position: absolute;
left: 0.2em;
bottom: 0.2em;
width: 0.55em;
height: 1em;
border: 0.12em solid rgba(var(--ninUser), 1);
border-top: none;
border-left: none;
transform: rotate(45deg);
}
}
} }
#id_applets_container { #id_applets_container {