Add a small border under the navbar
This commit is contained in:
parent
db26c66079
commit
d045ab66d3
1 changed files with 6 additions and 1 deletions
|
@ -2,6 +2,7 @@
|
|||
:root {
|
||||
--font-color: #000000;
|
||||
--background-color: #FFFFFF;
|
||||
--footer-color: grey;
|
||||
|
||||
--max-width: 800px;
|
||||
--max-width-full: 1000px;
|
||||
|
@ -81,7 +82,7 @@ body {
|
|||
height: var(--footer-height-inline);
|
||||
}
|
||||
.footer {
|
||||
background-color: grey;
|
||||
background-color: var(--footer-color);
|
||||
color: white;
|
||||
}
|
||||
.footer .footer_link {
|
||||
|
@ -112,11 +113,15 @@ body {
|
|||
line-height: 4em;
|
||||
z-index: 50;
|
||||
background: white;
|
||||
box-shadow: 0 1px 5px black;
|
||||
}
|
||||
#navigation {
|
||||
max-width: var(--max-width-full);
|
||||
margin: auto;
|
||||
}
|
||||
#navigation-list {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.navigation-item a {
|
||||
color: var(--primary-text);
|
||||
padding: 0.5rem 0;
|
||||
|
|
Loading…
Reference in a new issue