diff --git a/docker/ploughshares/static/css/custom.css b/docker/ploughshares/static/css/custom.css index b4a3020..00e1c2a 100644 --- a/docker/ploughshares/static/css/custom.css +++ b/docker/ploughshares/static/css/custom.css @@ -3,8 +3,6 @@ /* System font stack */ body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; - padding-top: 20px; - padding-bottom: 20px; color: #333333; /* Improved text contrast */ line-height: 1.5; /* Improved readability */ font-size: 16px; /* Base font size for better readability */ @@ -29,8 +27,16 @@ body { /* Header styles */ .header { + margin-left: -50vw; + margin-right: -50vw; border-bottom: 1px solid #d0d0d0; margin-bottom: 30px; + background-color: var(--ploughshares-blue) !important; +} + +.header > div { + max-width: 1320px; + margin: auto; } .header h3 { @@ -84,15 +90,18 @@ label { /* Logo styles */ .logo-container { display: flex; + flex-direction: column; align-items: center; } +.logo-container div { + font-size: 14px; +} + .navbar-brand img { - max-height: 40px; + max-height: 60px; width: auto; margin-right: 10px; - /* Improved logo contrast with background */ - background-color: white; padding: 3px; border-radius: 4px; } @@ -203,7 +212,16 @@ a:focus, button:focus, input:focus, select:focus, textarea:focus, [tabindex]:foc /* Navbar styles */ .navbar { background-color: var(--ploughshares-blue) !important; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); + padding: 20px 10px 20px 10px; +} + +.navbar-brand { + transition: opacity 0.5s ease-in-out ; +} + +.navbar-brand:hover { + text-decoration: none; + opacity: 80%; } .navbar-light .navbar-brand { @@ -254,9 +272,8 @@ a:focus, button:focus, input:focus, select:focus, textarea:focus, [tabindex]:foc } .table th { - background-color: var(--ploughshares-blue); - color: white; font-weight: 500; + font-size: 18px; border-bottom: 2px solid var(--ploughshares-dark-blue); } diff --git a/docker/ploughshares/static/img/logo-light.png b/docker/ploughshares/static/img/logo-light.png new file mode 100644 index 0000000..de3aa11 Binary files /dev/null and b/docker/ploughshares/static/img/logo-light.png differ diff --git a/docker/ploughshares/templates/base.html b/docker/ploughshares/templates/base.html index c5212bb..4f294fc 100644 --- a/docker/ploughshares/templates/base.html +++ b/docker/ploughshares/templates/base.html @@ -12,13 +12,13 @@ @@ -28,46 +28,47 @@