diff --git a/pinaxcon/templates/site_base.html b/pinaxcon/templates/site_base.html index 74e2fd51d377b6dc5bd6802773263c649fe81fde..8270e204a5d7b5450a266337f1fa8663f3227ed0 100644 --- a/pinaxcon/templates/site_base.html +++ b/pinaxcon/templates/site_base.html @@ -18,6 +18,9 @@ {% endblock %} {% block body_base %} + +
+
{% include "_messages.html" %} diff --git a/static/scss/custom.scss b/static/scss/custom.scss index e44c6dcf01fe354254ea2e12ac276edbaafd26e0..34f925bcc2963905680705c63461f819f4a58ba2 100644 --- a/static/scss/custom.scss +++ b/static/scss/custom.scss @@ -2,6 +2,9 @@ body { padding-top: 50px; position: relative; font-weight: 300; // Not overridable in bootstrap at the moment. + /*background: url("../images/website-background.svg"); + background-size: cover; + background-repeat: no-repeat;*/ } // Not overridable in bootstrap at the moment @@ -87,6 +90,11 @@ body.reviews.voting-status { padding: 0; } +#content_body { + background-color: $background-filter-transparent; + box-shadow: 0px 0px 2em $background-filter; //, inset 0px -5px 1em rgba(0, 0, 0, 0.8); +} + .homepage-block-content { position: relative; height: 100%; @@ -128,6 +136,7 @@ body.reviews.voting-status { opacity: 0.3; background-blend-mode: multiply; z-index: -9999; + box-shadow: $box-shadow; } .homepage-block.dark { diff --git a/static/scss/variables.scss b/static/scss/variables.scss index 33a4d1870b17ec469891a3b86d020513ff00733d..940b3fdca5c00f3fe39f0187a5da55daf43d9a0d 100644 --- a/static/scss/variables.scss +++ b/static/scss/variables.scss @@ -2,11 +2,13 @@ // Used by links, buttons, and other background bits. $brand-primary: #1f6400; $background-filter: hsla(207, 60%, 85%, 1.0); +$background-filter-transparent: change-color($background-filter, $alpha: 0.5); /* TEXT */ $font-family-sans-serif: 'Montserrat', Arial, sans-serif; $font-family-serif: Georgia, "Times New Roman", Times, serif; $font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace; +$font-size-base: 15px; $headings-line-height: 1.0;