From 6e8e49ba49beeeb63e1e027fc23e8883a1185109 Mon Sep 17 00:00:00 2001 From: Marius Peter Date: Sat, 1 Feb 2025 19:24:32 +0100 Subject: Reorganized everything. Thank you DeepSeek! --- lib/static/styles.css | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 lib/static/styles.css (limited to 'lib/static/styles.css') 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; +} -- cgit v1.2.3