21 lines
441 B
CSS
21 lines
441 B
CSS
|
/*GESTION DE LA GRILLE D'UNE PAGE DE TEXTE LEGAL/INFO/BORRING */
|
||
|
main {
|
||
|
grid-area: core-start / main-col-sep 3 / main-row-fin / main-col-sep 9;
|
||
|
}
|
||
|
|
||
|
/* Tablettes */
|
||
|
@media (max-width: 1500px) and (min-width: 801px) {
|
||
|
main {
|
||
|
grid-area: core-start / main-col-sep 1 / main-row-fin / main-col-sep 11;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/* Smartphones */
|
||
|
@media (max-width: 800px) {
|
||
|
main {
|
||
|
grid-area: core-start / main-col-start / main-row-fin / main-col-sep 12;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|