diff options
author | 2024-03-26 09:24:39 +0800 | |
---|---|---|
committer | 2024-03-26 09:24:39 +0800 | |
commit | b4bb7a09bd1460b4b2dbcdcdf44f427556c6fac8 (patch) | |
tree | 2843d89673ea2daa035a57a60c63253e2c91a78b /pydis_site/static | |
parent | Merge branch 'main' into fix/footer-logo-filtering (diff) |
Footer: Adjust baseline positioning to prioritize windows
There doesn't seem to be a way (say relative units, etc) to make it look
good on both worlds. We'll prioritize windows for now since most of our
users come from there.
Diffstat (limited to 'pydis_site/static')
-rw-r--r-- | pydis_site/static/css/base/base.css | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/pydis_site/static/css/base/base.css b/pydis_site/static/css/base/base.css index 1f78b9eb..aed93db7 100644 --- a/pydis_site/static/css/base/base.css +++ b/pydis_site/static/css/base/base.css @@ -89,26 +89,27 @@ main.site-content { #linode-logo { padding-left: 5px; - background: url(/static/images/sponsors_dark/linode_text.png) no-repeat center; + background: url(/static/images/sponsors_dark/linode_text.png) no-repeat; background-size: 50px; - background-position: 2px -7px; + background-position: center -5px; color: #00000000; } #netcup-logo { padding-left: 15px; + padding-bottom: 3px; background: url(/static/images/sponsors/netcup-white.svg) no-repeat center; background-size: 60px; - background-position: 2px 2px; + background-position: 2px 4px; color: #00000000; } #django-logo { - padding-bottom: 2px; + padding-bottom: 4px; padding-left: 5px; background: url(/static/images/events/logos_dark/django.png) no-repeat center; background-size: 56px; - background-position: -1px -1px; + background-position: -1px 1px; color: #00000000; } @@ -117,7 +118,7 @@ main.site-content { height: 20px; background: url(https://bulma.io/assets/brand/Bulma%20Logo%20White.png) no-repeat center; background-size: 60px; - background-position: 0px 3px; + background-position: 2px 4px; color: #00000000; } |