1
0
mirror of https://github.com/bigchaindb/site.git synced 2024-11-01 15:55:36 +01:00
site/_src/_assets/styles/bigchain/_content-page.scss

42 lines
814 B
SCSS
Raw Normal View History

2016-01-07 20:15:09 +01:00
.page__header {
2016-01-09 18:36:18 +01:00
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;
}
2016-01-07 20:15:09 +01:00
padding: ($spacer * 4) 0;
}
2016-01-07 20:15:09 +01:00
.page__title {
text-align: center;
margin: 0;
}
2016-01-07 20:15:09 +01:00
.page__content {
2016-01-09 18:36:18 +01:00
.row {
> h2 {
border-bottom: 1px solid $gray-lightest;
padding-bottom: $spacer;
text-align: center;
}
}
}