From ad8126993d401de1253d25ec85c1fda19b1423a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs?= Date: Wed, 7 Oct 2020 17:40:49 -0500 Subject: Add footer --- grid.css | 28 +++++++++++++++++++++++++++- index.html | 48 +++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 74 insertions(+), 2 deletions(-) diff --git a/grid.css b/grid.css index 4b1b5ec..4b188e2 100644 --- a/grid.css +++ b/grid.css @@ -40,6 +40,10 @@ body { /* grid-template-rows: auto 1fr auto; */ } +.text-center { + text-align: center; +} + .header { display: grid; grid-template-columns: 0.3fr auto; @@ -102,4 +106,26 @@ label[for="navbar-toggle-cbox"] { margin-bottom: 0.5rem; } .main { grid-area: main; } -.footer { grid-area: footer; } + +.footer { + grid-area: footer; + + display: grid; + grid-template-columns: 1fr; + grid-template-rows: auto auto; + grid-template-areas: + "footer-info" + "copy-info"; + margin: auto; +} + +.footer-info { + grid-area: footer-info; +} +.copy-info { + grid-area: copy-info; +} + +.copy-info > address > p { + margin: 0px; +} diff --git a/index.html b/index.html index 366006f..d283ea8 100644 --- a/index.html +++ b/index.html @@ -30,6 +30,52 @@
- + -- cgit v1.2.3