aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/static/css
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2019-04-20 14:39:16 +0100
committerGravatar Gareth Coles <[email protected]>2019-04-20 14:39:16 +0100
commit43039cd13afd19ea59addc3bb92c3c600826d8a3 (patch)
tree1aaaf8b862a7b55836c6a64a16d2fc4cb4100e60 /pydis_site/static/css
parentAddress reviews (diff)
parentMerge 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')
-rw-r--r--pydis_site/static/css/base/base.css40
-rw-r--r--pydis_site/static/css/home/index.css115
2 files changed, 155 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;
+}
diff --git a/pydis_site/static/css/home/index.css b/pydis_site/static/css/home/index.css
index 2d744915..0ad2e6b5 100644
--- a/pydis_site/static/css/home/index.css
+++ b/pydis_site/static/css/home/index.css
@@ -16,3 +16,118 @@
height: 5rem;
margin-right: 2rem;
}
+
+.navbar-item.is-fullsize {
+ padding: 0;
+}
+
+.navbar-item.is-fullsize img {
+ max-height: 4.75rem;
+}
+
+.navbar-item.has-no-highlight:hover {
+ background-color: transparent;
+}
+
+.navbar-item.has-left-margin-1 {
+ margin-left: 1rem;
+}
+
+.navbar-item.has-left-margin-2 {
+ margin-left: 2rem;
+}
+
+.navbar-item.has-left-margin-3 {
+ margin-left: 3rem;
+}
+
+.video-container iframe,
+.video-container object,
+.video-container embed {
+ width: 100%;
+ height: calc(92vw * 0.5625);
+ margin: 8px auto auto auto;
+}
+
+div.card.github-card {
+ box-shadow: none;
+ border: #d1d5da 1px solid;
+ border-radius: 3px;
+}
+
+div.repo-headline {
+ font-size: 1.25rem;
+ margin-bottom: 8px;
+}
+
+span.repo-language-dot {
+ border-radius: 50%;
+ height: 12px;
+ width: 12px;
+ top: 1px;
+ display: inline-block;
+ position: relative;
+}
+
+span.repo-language-dot.python {
+ background-color: #3572A5;
+}
+
+span.repo-language-dot.html {
+ background-color: #e34c26;
+}
+
+span.repo-language-dot.css {
+ background-color: #563d7c;
+}
+
+#repo-footer-item {
+ margin-left: 1.2rem;
+}
+
+#navbar-banner {
+ background-color: transparent;
+}
+
+#navbar-banner img {
+ max-height: 3rem;
+}
+
+#sponsors-hero {
+ padding-top: 2rem;
+ padding-bottom: 3rem;
+}
+
+@media screen and (min-width: 1088px) {
+ .column.is-half, .column.is-half-tablet {
+ flex: none;
+ width: 50%;
+ }
+
+ .columns:not(.is-desktop) {
+ display: flex;
+ }
+
+ .video-container iframe {
+ height: calc(42vw * 0.5625);
+ max-height: 371px;
+ max-width: 660px;
+ }
+}
+
+@media screen and (max-width: 1087px) {
+ .column.is-half, .column.is-half-tablet {
+ flex: none;
+ width: 100%;
+ }
+
+ .columns:not(.is-desktop) {
+ display: block;
+ }
+
+ .video-container iframe {
+ height: calc(92vw * 0.5625);
+ max-height: none;
+ max-width: none;
+ }
+}