Add a small border under the navbar

This commit is contained in:
Gregory Trolliet 2020-04-27 18:58:52 +02:00
parent db26c66079
commit d045ab66d3
1 changed files with 6 additions and 1 deletions

View File

@ -2,6 +2,7 @@
:root { :root {
--font-color: #000000; --font-color: #000000;
--background-color: #FFFFFF; --background-color: #FFFFFF;
--footer-color: grey;
--max-width: 800px; --max-width: 800px;
--max-width-full: 1000px; --max-width-full: 1000px;
@ -81,7 +82,7 @@ body {
height: var(--footer-height-inline); height: var(--footer-height-inline);
} }
.footer { .footer {
background-color: grey; background-color: var(--footer-color);
color: white; color: white;
} }
.footer .footer_link { .footer .footer_link {
@ -112,11 +113,15 @@ body {
line-height: 4em; line-height: 4em;
z-index: 50; z-index: 50;
background: white; background: white;
box-shadow: 0 1px 5px black;
} }
#navigation { #navigation {
max-width: var(--max-width-full); max-width: var(--max-width-full);
margin: auto; margin: auto;
} }
#navigation-list {
margin-bottom: 0;
}
.navigation-item a { .navigation-item a {
color: var(--primary-text); color: var(--primary-text);
padding: 0.5rem 0; padding: 0.5rem 0;