diff options
Diffstat (limited to 'static')
-rw-r--r-- | static/css/styles.css | 27 |
1 files changed, 22 insertions, 5 deletions
diff --git a/static/css/styles.css b/static/css/styles.css index e6cf450..cbd82b1 100644 --- a/static/css/styles.css +++ b/static/css/styles.css @@ -64,12 +64,19 @@ footer { grid-row: 1; } -.navbar { +.navbar ul { + list-style-type: none; + margin: 0; + padding: 0; + overflow: hidden; background-color: white; } -.navbar a { +.navbar li { float: left; +} + +.navbar li a { display: block; color: black; text-align: center; @@ -77,15 +84,25 @@ footer { text-decoration: none; } -.navbar a.right { +.navbar li.right { float: right; } -.navbar a:hover { +.navbar li.right a:hover { + background-color: white; + cursor: default; +} + +.navbar li a:hover { background-color: #333; color: white; } +.easteregg a:hover { + background-color: white; + cursor: default; +} + .posts-list { grid-column: 1; grid-row: 2; @@ -139,4 +156,4 @@ footer a:hover, footer a:active { .toc a:hover, .toc a:active { text-decoration: underline; -}
\ No newline at end of file +} |