From 1099f67641c5c24a9ed39a5b87c19d3b089de8d0 Mon Sep 17 00:00:00 2001 From: Evan Buss Date: Mon, 8 Jul 2024 23:17:14 -0400 Subject: [PATCH] style: tweakss --- html/static/style.css | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/html/static/style.css b/html/static/style.css index e3cf3c1..211f12a 100644 --- a/html/static/style.css +++ b/html/static/style.css @@ -18,20 +18,26 @@ list-style-type: none; } +@media (max-width: 500px) { + #container > ul { + margin-top: 125px; + } +} + #container > ul > li { - padding: 1rem 1rem; - display: block; + padding: 1rem; + white-space: nowrap; } #container > ul > li > img { display: inline-block; height: 75px; - object-fit: cover; margin-right: 1rem; } #container > ul > li > .info { display: inline-block; vertical-align: top; + white-space: normal; } .info > p { @@ -87,5 +93,9 @@ a { } .nav-controls > a { - padding: 1rem; + padding: 1rem 0.5rem; +} + +.nav-controls:last-child { + padding-right: 1rem; }