fold some nav/style menu styles into header

unnecessarily duplicated now that I have div.header, and also useful for
when I start the error handling pages
This commit is contained in:
Brian S. Stephan 2021-02-21 10:14:42 -06:00
parent c1801b0086
commit 411ecebbc6
3 changed files with 3 additions and 12 deletions

View File

@ -35,13 +35,10 @@ a:hover, a:active {
div.header { div.header {
background: #222; background: #222;
border-bottom: 1px solid #222; border-bottom: 1px solid #222;
}
div.nav, div.styles {
color: #BBB; color: #BBB;
} }
div.nav a, div.styles a { div.header a {
color: #BBB; color: #BBB;
} }

View File

@ -35,13 +35,10 @@ a:hover, a:active {
div.header { div.header {
background: #EEE; background: #EEE;
border-bottom: 1px solid #CCC; border-bottom: 1px solid #CCC;
}
div.nav, div.styles {
color: #666; color: #666;
} }
div.nav a, div.styles a { div.header a {
color: #666; color: #666;
} }

View File

@ -66,14 +66,11 @@ a:active {
div.header { div.header {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
}
div.nav, div.styles {
font-size: 0.75em; font-size: 0.75em;
padding: 0.25em 0.5em; padding: 0.25em 0.5em;
} }
div.nav a, div.styles a { div.header a {
border-bottom: none; border-bottom: none;
} }