mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-01 15:55:36 +01:00
33 lines
677 B
SCSS
33 lines
677 B
SCSS
|
.header {
|
||
|
position: relative;
|
||
|
|
||
|
// background
|
||
|
background: url('../img/photo1.jpg') no-repeat center bottom;
|
||
|
background-size: cover;
|
||
|
|
||
|
// color overlay
|
||
|
&:before {
|
||
|
content: "";
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
position: absolute;
|
||
|
left: 0;
|
||
|
top: 0;
|
||
|
bottom: 0;
|
||
|
right: 0;
|
||
|
//background: $brand-main-brown;
|
||
|
background: linear-gradient(to top left, $brand-main-blue 0%, $brand-main-brown 100%);
|
||
|
opacity: .7;
|
||
|
z-index: 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.header__title {
|
||
|
position: relative;
|
||
|
z-index: 1;
|
||
|
color: #fff;
|
||
|
text-align: center;
|
||
|
margin: 0;
|
||
|
padding: ($spacer * 4) 0;
|
||
|
}
|