Deutlichere Effekte bei Nutzerinteraktionen

This commit is contained in:
2026-07-19 17:19:57 +02:00
parent 96f38ce72e
commit c4ffc1c797
3 changed files with 108 additions and 4 deletions
+20
View File
@@ -225,4 +225,24 @@ h1 {
text-align: center;
text-decoration: none;
box-sizing: border-box;
}
/* Deutlichere Klickreaktion für normale Buttons */
.button:active {
transform: translateY(1px);
box-shadow: none;
}
/* Deutlichere Klickreaktion für Kategorien */
.category-link:active {
transform: translateY(1px);
box-shadow: none;
}
/* Sichtbare Tastatur-Markierung */
.button:focus-visible,
.category-link:focus-visible,
.article-link a:focus-visible,
.register-link a:focus-visible {
outline: 3px solid #fbbf24;
outline-offset: 3px;
}