Compare commits

...

5 commits

Author SHA1 Message Date
eba015111f
index.html: Homogénéisation de l'indentation
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Suppression du mélange d'indentation entre tabulations et espace, tout est passé en espace (2)
2024-06-07 15:32:52 +02:00
0d2b7f2fc1
Amélioration de layout.css: homogénéisation de l'indentation
1. passage des tabulations à 2 espaces pour homogénéiser avec les autres fichiers CSS
2. Ajout de retours à la ligne et d'un niveau d'indentation pour les valeurs de grid-template-rows contenant de longues valeurs pour améliorer la lisibilité du code
2024-06-07 15:31:50 +02:00
ffe96d9c51
CSS: Déplacement des 2 versions de la class utilitaire .highlight dans le même fichier (layout.css) 2024-06-07 15:18:16 +02:00
8e64f17016
page-generic.css: Suppression des lignes vides inutiles à la fin du fichier 2024-06-07 15:16:31 +02:00
6d33f1b765
Amélioration de home.css: homogénéisation de l'indentation + correction de formattage
1. passage des tabulations à 2 espaces pour homogénéiser avec les autres fichiers CSS
2. Ajout d'un niveau d'indentation pour les valeurs de grid-template-columns pour améliorer la lisibilité du code
3. Correction d'erreurs de formatage de text dans les commentaires ('même'→'même', 'opération'→'opération', 'goutière'→'goutière'
2024-06-07 15:15:55 +02:00
4 changed files with 1989 additions and 1988 deletions

File diff suppressed because it is too large Load diff

View file

@ -92,15 +92,23 @@ img{
overflow: hidden;
}
.highlight{
color: var(--day-highlight-color);
background-color: var(--day-highlight-bg);
}
/*GESTION DE LA GRILLE DU DOCUMENT*/
div#container{
display: grid;
grid-template-columns: [main-col-start] repeat(12, calc(100% / 12) [main-col-sep]);
grid-template-rows:
[main-row-debut] var(--med_margin) [header-start] auto [header-end] var(--big_margin) [core-start] auto [main-row-fin]
var(--big_margin)
[footer-start] auto [footer-end]
;
display: grid;
grid-template-columns: [main-col-start] repeat(12, calc(100% / 12) [main-col-sep]);
grid-template-rows:
[main-row-debut] var(--med_margin)
[header-start] auto
[header-end] var(--big_margin)
[core-start] auto
[main-row-fin] var(--big_margin)
[footer-start] auto [footer-end]
;
}
/* EN-TETE */
@ -211,7 +219,7 @@ pre.center > a{
h1:before, h1:after{
content: '';
}
}
h2:before{
content: '______________________________________________________________________\A""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""\A* ';
@ -260,4 +268,3 @@ pre.center > a{
border-color: var(--txt-night);
}
}

View file

@ -16,5 +16,3 @@ main {
grid-area: core-start / main-col-start / main-row-fin / main-col-sep 12;
}
}

File diff suppressed because it is too large Load diff