diff options
author | Marius Peter <marius.peter@tutanota.com> | 2025-03-15 19:17:14 +0100 |
---|---|---|
committer | Marius Peter <marius.peter@tutanota.com> | 2025-03-15 19:17:14 +0100 |
commit | 346d17a1f4c78a05fb1fe010eb1a9e646c8b04a3 (patch) | |
tree | f1151c0e5bb1649158735a219e0744e11f3015b3 /lib/static | |
parent | 55993c4d0857aec8a372aee989aaeef61ea37b3c (diff) |
Great work today, again!
Diffstat (limited to 'lib/static')
-rw-r--r-- | lib/static/styles.css | 54 |
1 files changed, 5 insertions, 49 deletions
diff --git a/lib/static/styles.css b/lib/static/styles.css index de2c3db..680a6b1 100644 --- a/lib/static/styles.css +++ b/lib/static/styles.css @@ -1,29 +1,18 @@ -@import url("fonts/Inter-4.1/web/inter.css"); - body { - font-family: Inter, sans-serif; - max-width: 50em; - margin: auto; - padding: 0 1em; - background-color: #181818; - color: white; + font-family: sans-serif; } nav#top { - background-color: black; - border-radius: 0.25rem; + background-color: dimgray; } nav#top ul { - display: flex; - flex-wrap: wrap; + display: flex; list-style-type: none; - padding: 0; } nav#top ul li { - padding: 0.5em 0; - border-radius: 0.25rem; + padding: 1em 0; } nav#top ul li a { @@ -33,39 +22,6 @@ nav#top ul li a { } nav#top ul li a:hover { - background-color: white; - color: black; -} - -nav#top ul li#active { - border-radius: 0.25rem; - background-color: rgb(194, 79, 30); -} - -nav#top ul li#active a:hover { - border-radius: 0.25rem; - background-color: rgb(132, 40, 0); - color: white; -} - -div#main ul { - padding-left: 0; - list-style: none; -} - -div#main ul li { - border: 1px solid #303030; -} - -div#main ul li a { - display: block; - color: white; - text-decoration: none; - padding: 0.5em; -} - -div#main a:hover { - background-color: white; - color: black; + background-color: #555; text-decoration: revert; } |