diff options
author | 2019-04-20 14:39:16 +0100 | |
---|---|---|
committer | 2019-04-20 14:39:16 +0100 | |
commit | 43039cd13afd19ea59addc3bb92c3c600826d8a3 (patch) | |
tree | 1aaaf8b862a7b55836c6a64a16d2fc4cb4100e60 /pydis_site/static/css/base/base.css | |
parent | Address reviews (diff) | |
parent | Merge pull request #213 from python-discord/django_front_page (diff) |
Merge branch 'django' into django+200/wiki
# Conflicts:
# Pipfile
# Pipfile.lock
# pydis_site/apps/home/tests/test_app_basics.py
# pydis_site/apps/home/urls.py
# pydis_site/hosts.py
# pydis_site/settings.py
Diffstat (limited to 'pydis_site/static/css/base/base.css')
-rw-r--r-- | pydis_site/static/css/base/base.css | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/pydis_site/static/css/base/base.css b/pydis_site/static/css/base/base.css new file mode 100644 index 00000000..4f656189 --- /dev/null +++ b/pydis_site/static/css/base/base.css @@ -0,0 +1,40 @@ +html { + overflow: auto; +} + +body.site { + display: flex; + min-height: 100vh; + flex-direction: column; +} + +main.site-content { + flex: 1; +} + +div.card.has-equal-height { + height: 100%; + display: flex; + flex-direction: column; +} + +#django-logo { + padding-bottom: 2px; + background: url(https://static.djangoproject.com/img/logos/django-logo-negative.png) no-repeat center; + filter: grayscale(1) invert(0.02); + background-size: 52px 25.5px; + background-position: -1px -2px; + color: #00000000; +} + +#bulma-logo { + padding-left: 18px; + height: 20px; + background: url(https://bulma.io/images/bulma-logo-white.png) no-repeat center; + background-size: 60px; + color: #00000000; +} + +#pydis-text { + font-weight: bold; +} |