From d20afc9782c77a093629f99b632aa3bfe4b3cb32 2017-08-14 00:21:02 From: Christopher Neugebauer Date: 2017-08-14 00:21:02 Subject: [PATCH] Adds a logo to the footer. --- diff --git a/pinaxcon/templates/_footer.html b/pinaxcon/templates/_footer.html index 58c3227fac962542dba046f36df693a11f78f23d..5e0de6b275f51a235876bcc27cf29e5f80547c24 100644 --- a/pinaxcon/templates/_footer.html +++ b/pinaxcon/templates/_footer.html @@ -1,5 +1,13 @@ +{% load staticfiles %}
-
+ +
+
+
+
+
+ +

© 2017 North Bay Python. North Bay Python is a member project of Software Freedom Conservancy, a 501(c)(3) charity.

Facebook | Twitter | Lanyrd | Code of Conduct | Terms and Conditions | Colophon

diff --git a/static/images/logo.svg b/static/images/logo.svg new file mode 100644 index 0000000000000000000000000000000000000000..340fb281c5e84eb2e900e397d40c6f8d70fd85a1 --- /dev/null +++ b/static/images/logo.svg @@ -0,0 +1,316 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/static/scss/custom.scss b/static/scss/custom.scss index adbc934645e0e4ec55fd3a3ab8cfd5885653c6f4..25b7fedef2eab85ad8ac59c022a1735c61238cd7 100644 --- a/static/scss/custom.scss +++ b/static/scss/custom.scss @@ -198,6 +198,39 @@ $homepage-block-min-height: 480px; } } +.circle { + position: relative; + border-radius: 100%; + overflow: hidden; + width: 100%; + box-shadow: 0px 0px 2em black; +} + +.circle:before { + content: ""; + display: block; + padding-top: 100%; +} + +.fill { + position: absolute; + width: 100%; + height: 100%; + top: 0; + bottom: 0; + left: 0; + right:0; + background-size: cover; + background-position: center; +} + +.squish { + position: relative; + width: 70%; + margin: auto; + margin-top: 5%; + margin-bottom: 5%; +} .btn-group + p { margin-top: 1em;