aboutsummaryrefslogtreecommitdiff
path: root/assets/css/page-generic.css
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2023-10-17 22:36:25 +0200
committerQuentin Dufour <quentin@deuxfleurs.fr>2023-10-17 22:36:25 +0200
commite00d1bd6a6212282696a0b3d2a6ac7be446cdc96 (patch)
treeda3a5edd98535d66f5640a2c84507ca2992602da /assets/css/page-generic.css
parentab4e5f247273088865765fbac09c3e5047e08992 (diff)
downloadsite-hugo.tar.gz
site-hugo.zip
wip hugohugo
Diffstat (limited to 'assets/css/page-generic.css')
-rw-r--r--assets/css/page-generic.css20
1 files changed, 20 insertions, 0 deletions
diff --git a/assets/css/page-generic.css b/assets/css/page-generic.css
new file mode 100644
index 0000000..cc41691
--- /dev/null
+++ b/assets/css/page-generic.css
@@ -0,0 +1,20 @@
+/*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;
+ }
+}
+
+