diff options
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; } |