This commit is contained in:
Christopher Neugebauer 2018-07-01 21:23:06 -07:00
parent 477904f265
commit e31003b164
2 changed files with 14 additions and 2 deletions

View file

@ -31,7 +31,7 @@
{% block body_base %}
<div class="homepage-block-bg website-background"></div>
<div class="homepage-background-opacity website-background"></div>
<div class="clouds hdr"></div>
<div id="background-filter">

View file

@ -212,12 +212,24 @@ $homepage-block-min-height: 480px;
position: absolute;
background-size: cover;
background-position: center;
opacity: 0.7;
opacity: 0.3;
background-blend-mode: multiply;
z-index: -9999;
box-shadow: $box-shadow;
}
.homepage-background-opacity {
top: 0;
bottom: 0;
width: 100%;
height: 100%;
position: absolute;
opacity: 0.7;
z-index: -9999;
background-blend-mode: multiply;
}
.homepage-block.dark {
background: $gray-base;
color: white;