update default theme

This commit is contained in:
2025-10-01 10:07:32 +02:00
committed by GitHub
parent a67968d222
commit 922b56c27e

View File

@@ -53,7 +53,7 @@
}
.tagentry label:hover {
background-color: var(--color7);
background-color: var(--color4);
}
.tagentry .tagtoggle:hover {
@@ -74,6 +74,27 @@
font-weight: 800;
}
.loader {
width: 48px;
height: 48px;
border-radius: 50%;
display: inline-block;
border-top: 3px solid var(--bcolor2);
border-right: 3px solid transparent;
box-sizing: border-box;
animation: rotation 1s linear infinite;
}
@keyframes rotation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
body {
color: var(--bcolor2);
background-color: var(--bcolor1);
@@ -87,4 +108,4 @@ body a {
font-weight: 400;
color: var(--color5);
text-decoration: none;
}
}