2025-02-24
All checks were successful
ci/woodpecker/push/publish_instable Pipeline was successful

This commit is contained in:
gcch 2025-02-24 00:19:17 +01:00
commit a510899ff1
17 changed files with 309 additions and 103 deletions

View file

@ -5,8 +5,8 @@
/* Désactive le comportement étrange des <legend> au sein de <fieldset>. */
:where(fieldset > legend) {
width: 100%;
float: left;
inline-size: 100%;
}
/* Hauteur de ligne plus étroite pour les éléments interactifs. */

View file

@ -27,7 +27,7 @@ h1 {
}
.container {
--max-width: 60rem;
--max-width: 90rem;
--space: var(--s1);
place-content: start;
@ -58,17 +58,17 @@ main {
}
@keyframes fade-in {
to {
100% {
opacity: 1;
}
}
@keyframes flicker {
from, 49% {
0%, 49% {
opacity: 0;
}
50%, to {
50%, 100% {
opacity: 1;
}
}