diff options
Diffstat (limited to 'lib/static/styles.css')
-rw-r--r-- | lib/static/styles.css | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/lib/static/styles.css b/lib/static/styles.css new file mode 100644 index 0000000..680a6b1 --- /dev/null +++ b/lib/static/styles.css @@ -0,0 +1,27 @@ +body { + font-family: sans-serif; +} + +nav#top { + background-color: dimgray; +} + +nav#top ul { + display: flex; + list-style-type: none; +} + +nav#top ul li { + padding: 1em 0; +} + +nav#top ul li a { + color: white; + text-decoration: none; + padding: 0.5em 1em; +} + +nav#top ul li a:hover { + background-color: #555; + text-decoration: revert; +} |