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

56 lines
976 B
SCSS
Raw Normal View History

2016-01-21 11:51:05 +01:00
//
// Page: Community
// ---
// bigchain.io
//
2016-01-21 12:38:06 +01:00
.page-community {
.header {
background: url('../img/photo2.jpg') no-repeat center top;
background-size: cover;
}
}
2016-01-21 11:51:05 +01:00
.section-community,
.section-conduct {
@extend .text-center;
}
.section-community {
.grid h1 { @extend .h3; }
.icon--social {
width: 2rem;
height: 2rem;
}
2016-01-21 11:51:05 +01:00
}
.section-conduct {
2016-01-21 12:38:06 +01:00
position: relative;
// background
background: url('../img/photo1.jpg') no-repeat center top;
background-size: cover;
// color overlay
&:before {
content: "";
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
2016-01-22 16:03:56 +01:00
background: linear-gradient(to top left, $brand-main-blue 0%, $brand-main-violet 100%);
2016-01-21 12:38:06 +01:00
opacity: .7;
z-index: 0;
}
.row { z-index: 1 }
.section-title,
.section-description {
color: #fff;
}
2016-01-21 11:51:05 +01:00
}