diff options
author | Julien Dessaux | 2021-10-25 23:33:28 +0200 |
---|---|---|
committer | Julien Dessaux | 2021-10-25 23:33:28 +0200 |
commit | 031473807e1f1d811d1e294e09cbca6c6ba839f9 (patch) | |
tree | a78260577d4ce3ebf2e7b79c8b144eb8d7553335 /static | |
parent | Hardcode HEAD for jester and tiny_sqlite while waiting for releases in both p... (diff) | |
download | short-031473807e1f1d811d1e294e09cbca6c6ba839f9.tar.gz short-031473807e1f1d811d1e294e09cbca6c6ba839f9.tar.bz2 short-031473807e1f1d811d1e294e09cbca6c6ba839f9.zip |
Added about page and a nav menu that links to it
Diffstat (limited to 'static')
-rw-r--r-- | static/all.css | 41 |
1 files changed, 30 insertions, 11 deletions
diff --git a/static/all.css b/static/all.css index 3e31e06..728d3b6 100644 --- a/static/all.css +++ b/static/all.css @@ -66,17 +66,36 @@ a:hover { h1 { color: #cb4b16; } -h2, -h3, -h4, -h5, -h6 { - color: #859900; -} -pre { + +header { background-color: #002b36; - color: #839496; } -pre, code { - background-color: #002b36; +header nav ul { + list-style-type: none; + margin: 0; + padding: 0; + overflow: hidden; + font-size: 1.25rem; +} +header nav ul li { + display: inline; + float: right; +} +header nav ul li a { + display: block; + text-align: center; + padding: 14px 16px; + text-decoration: none; +} +header nav ul li a:hover { + background-color: #073642; +} +.nav-menu-title { + float: left; + text-transform: uppercase; + font-weight: 700; + margin-right: 4px; +} +.nav-menu-margin-left { + margin-left: 4px; } |