diff options
author | Vitaly Takmazov | 2017-12-29 10:11:22 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2017-12-29 10:16:37 +0300 |
commit | 48d8853a47076b915922bb45ecd52a7a16f5307f (patch) | |
tree | 8216127cd1421574bf1e253ccd63ba4c670b480f /juick-www | |
parent | b81859f386e5c076e021f3da40e6eb99213e18bb (diff) |
www: fix global menu
Diffstat (limited to 'juick-www')
-rw-r--r-- | juick-www/src/main/static/style.css | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/juick-www/src/main/static/style.css b/juick-www/src/main/static/style.css index 9e350a3a..00a0d9ad 100644 --- a/juick-www/src/main/static/style.css +++ b/juick-www/src/main/static/style.css @@ -141,10 +141,6 @@ body > header { /* #region header internals */ -body > header a { - color: #888; - font-size: 13pt; -} #logo { height: 36px; margin: 7px 25px 0 20px; @@ -164,10 +160,15 @@ body > header a { #global { flex-grow: 1; } -#global li { +#global a { + color: #888; display: inline-block; + font-size: 13pt; padding: 14px; } +#global li { + display: inline-block; +} #global li:hover { background-color: #fff; box-shadow: 0 0 3px rgba(0, 0, 0, 0.16); @@ -523,7 +524,7 @@ article .tags > a, #content .title2 h2 { font-size: 11pt; } - #global li { + #global a { padding-left: 6px; padding-right: 6px; } |