Initial commit

This commit is contained in:
2026-05-03 19:27:23 +02:00
commit 70c52339df
41 changed files with 2422 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
.button {
display: inline-flex;
align-items: center;
justify-content: center;
border: none;
background-color: var(--button-color);
color: var(--button-text-color);
padding: var(--button-padding);
border-radius: var(--button-radius);
font: inherit;
cursor: pointer;
font-weight: bold;
transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}
.button:hover {
opacity: 0.92;
transform: translateY(-1px);
}
.button:active {
transform: translateY(0);
}
.button:focus-visible {
outline: 2px solid rgba(255, 255, 255, 0.85);
outline-offset: 3px;
}