From 74f3c9513d51d78702b4e1e7aa5272b2015da419 Mon Sep 17 00:00:00 2001 From: bruno Date: Thu, 29 Feb 2024 09:53:22 +0100 Subject: [PATCH] Fix grid --- assets/style.css | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/assets/style.css b/assets/style.css index 7128133..e90379c 100644 --- a/assets/style.css +++ b/assets/style.css @@ -44,14 +44,19 @@ body > nav { position: relative; z-index: 500; grid-area: nav; + box-shadow: 0 20px 28px 0 rgba(0, 0, 0, 0.6); + margin-bottom: 20px; } body > footer { grid-area: foot; + box-shadow: 0 -20px 28px 0 rgba(0, 0, 0, 0.6); + margin-top: 20px; } body > page { grid-area: main; + height: 100%; } header h1 { @@ -110,10 +115,7 @@ li.navpage_item { nav, footer { - -moz-box-shadow: 0 20px 28px 0 rgba(0, 0, 0, 0.6); - -webkit-box-shadow: 0 20px 28px 0 rgba(0, 0, 0, 0.6); background-color: rgba(0, 0, 0, 0.6); - box-shadow: 0 20px 28px 0 rgba(0, 0, 0, 0.6); padding: 1.2rem; text-align: center; }