2015-12-19 20:56:04 +01:00
|
|
|
//
|
|
|
|
// Page: front
|
|
|
|
// ---
|
|
|
|
// bigchain.io
|
|
|
|
//
|
2015-12-20 18:03:44 +01:00
|
|
|
|
|
|
|
.hero {
|
|
|
|
text-align: center;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
2015-12-20 19:31:36 +01:00
|
|
|
text-shadow: 0 1px 0 rgba(0,0,0,.3);
|
2015-12-20 18:03:44 +01:00
|
|
|
|
|
|
|
// background
|
2015-12-20 19:31:36 +01:00
|
|
|
background: url('../img/photo1.jpg') no-repeat center bottom;
|
2015-12-20 18:03:44 +01:00
|
|
|
background-size: cover;
|
|
|
|
|
2015-12-20 19:31:36 +01:00
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hero__content {
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
2015-12-20 18:03:44 +01:00
|
|
|
@media ($screen-sm) {
|
2015-12-20 19:31:36 +01:00
|
|
|
height: 100vh;
|
2015-12-20 18:03:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.logo {
|
2015-12-20 19:31:36 +01:00
|
|
|
fill-opacity: .6;
|
2015-12-20 18:03:44 +01:00
|
|
|
margin: auto;
|
2015-12-20 19:31:36 +01:00
|
|
|
margin-top: -($spacer * 8);
|
|
|
|
margin-bottom: ($spacer * 2);
|
2015-12-20 18:03:44 +01:00
|
|
|
max-width: 31em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section-title {
|
|
|
|
color: #fff;
|
|
|
|
font-size: $font-size-h1;
|
|
|
|
margin-bottom: ($spacer * 3);
|
2015-12-20 19:52:34 +01:00
|
|
|
|
|
|
|
&:after { display: none }
|
2015-12-20 18:03:44 +01:00
|
|
|
}
|
2015-12-20 19:31:36 +01:00
|
|
|
|
|
|
|
.btn {
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
text-shadow: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// intro animation
|
2015-12-20 19:52:34 +01:00
|
|
|
.logo {
|
|
|
|
@extend .animation-slide-in-from-bottom;
|
|
|
|
animation-duration: 1s;
|
|
|
|
animation-timing-function: $timing-default;
|
|
|
|
}
|
|
|
|
|
2015-12-20 19:31:36 +01:00
|
|
|
.section-title,
|
|
|
|
.btn {
|
|
|
|
@extend .animation-slide-in-from-bottom;
|
|
|
|
animation-fill-mode: backwards;
|
2015-12-20 19:52:34 +01:00
|
|
|
animation-play-state: paused;
|
2015-12-20 19:31:36 +01:00
|
|
|
}
|
|
|
|
|
2015-12-20 19:52:34 +01:00
|
|
|
.btn { animation-delay: .2s; }
|
|
|
|
|
|
|
|
&.is-ready {
|
|
|
|
.section-title,
|
|
|
|
.btn {
|
|
|
|
animation-play-state: running;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-12-20 18:03:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.section-benchmarks {
|
|
|
|
text-align: center;
|
2015-12-20 19:31:36 +01:00
|
|
|
border-bottom: 1px solid lighten($brand-main-gray, 40%);
|
2015-12-20 18:03:44 +01:00
|
|
|
|
2015-12-20 19:31:36 +01:00
|
|
|
.icon {
|
|
|
|
display: block;
|
|
|
|
margin: auto;
|
|
|
|
margin-bottom: $spacer;
|
|
|
|
}
|
|
|
|
}
|
2015-12-20 18:03:44 +01:00
|
|
|
|
|
|
|
.section-earlyaccess {
|
|
|
|
|
|
|
|
form {
|
|
|
|
max-width: $screen-sm-min;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
}
|