forked from Deuxfleurs/site
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
This commit is contained in:
parent
ffe96d9c51
commit
0d2b7f2fc1
1 changed files with 10 additions and 7 deletions
|
@ -99,13 +99,16 @@ img{
|
|||
|
||||
/*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 */
|
||||
|
|
Loading…
Reference in a new issue