This commit is contained in:
2025-05-10 04:12:32 +02:00
parent bf9406f924
commit 1a31e419cc
7 changed files with 314 additions and 23 deletions

View File

@@ -92,7 +92,7 @@ img.logo {
img.mascot {
width: 50%;
float: right;
margin-top: calc(300px - (50% + 12px));
margin-top: calc(300px - (50% + 32px));
}
fieldset {
@@ -372,7 +372,25 @@ div.checkboxes > input[type="checkbox"] {
font-size: small;
}
button.load {
content: "";
transition: background-color 0.3s;
}
[hidden] {
display: none;
visibility: hidden;
}
}
@keyframes backgroundAnimation {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}