From e940b9881a3f1878becef05bbeba5dfa601d05f7 Mon Sep 17 00:00:00 2001
From: Frederick Muriuki Muriithi
Date: Mon, 5 Jan 2026 15:30:54 -0600
Subject: Fix styling for site-wide banner.
---
uploader/static/css/layout-large.css | 4 ++++
uploader/static/css/theme.css | 6 ++----
uploader/templates/base.html | 2 +-
3 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/uploader/static/css/layout-large.css b/uploader/static/css/layout-large.css
index 8abd2dd..4471791 100644
--- a/uploader/static/css/layout-large.css
+++ b/uploader/static/css/layout-large.css
@@ -6,6 +6,8 @@
}
#header {
+ margin: -0.7em; /* Fill entire length of screen */
+
/* Place it in the parent element */
grid-column-start: 1;
grid-column-end: 3;
@@ -28,6 +30,8 @@
/* Place it in the parent element */
grid-column-start: 2;
grid-column-end: 3;
+
+ padding-right: 1em;
}
#main {
diff --git a/uploader/static/css/theme.css b/uploader/static/css/theme.css
index cd3d103..8d5ac35 100644
--- a/uploader/static/css/theme.css
+++ b/uploader/static/css/theme.css
@@ -8,16 +8,14 @@ body {
#header {
background-color: #336699;
color: #FFFFFF;
- border-radius: 3px;
min-height: 30px;
+ border-bottom: solid black 1px;
}
#header #header-nav .nav li a {
/* Content styling */
color: #FFFFFF;
- background: #4477AA;
- border: solid 5px #336699;
- border-radius: 5px;
+ vertical-align: top;
font-size: 0.7em;
text-align: center;
padding: 1px 7px;
diff --git a/uploader/templates/base.html b/uploader/templates/base.html
index 719a646..0f088b1 100644
--- a/uploader/templates/base.html
+++ b/uploader/templates/base.html
@@ -36,7 +36,7 @@
- {{user_email()}} Sign Out
+ Sign Out ({{user_email()}})
{%else%}
Sign In
--
cgit 1.4.1