1
0
mirror of https://github.com/bigchaindb/site.git synced 2024-11-01 15:55:36 +01:00
site/_src/_assets/styles/bigchain/_hero.scss
Matthias Kretschmann 71a557263e refactor the whole video js, ref #14
- make sure video only gets downloaded when needed
2016-02-10 01:11:09 +01:00

137 lines
2.2 KiB
SCSS

//
// Hero
// ---
// bigchain.io
//
$menu-height-md: 73px;
.hero {
@extend .background--photo;
text-align: center;
overflow: hidden;
position: relative;
.section {
@media ($screen-md) {
min-height: calc(100vh - #{$menu-height-md});
}
}
.logo--full {
fill-opacity: .8;
margin: 0 auto;
max-width: 31em;
}
.section-title {
color: #fff;
&:after { display: none }
}
.btn {
color: #fff;
opacity: .8;
position: absolute;
bottom: ($spacer * 2);
left: 0;
right: 0;
width: 100%;
display: none;
@media ($screen-md) {
display: block;
}
&:hover,
&:focus { opacity: 1; }
// the caret
.icon {
width: 12px;
height: 12px;
stroke: #fff;
display: block;
margin: auto;
}
}
// intro animation
.logo--full,
.section-title,
.btn {
@extend .animation-slide-in-from-bottom;
animation-duration: 1s;
animation-fill-mode: backwards;
}
.logo--full {
animation-timing-function: $timing-default;
}
.section-title,
.btn {
@extend .animation-slide-in-from-bottom;
animation-play-state: paused;
}
.btn { animation-delay: .2s; }
&.is-ready {
.section-title,
.btn {
animation-play-state: running;
}
}
}
.hero__content {
position: relative;
z-index: 1;
}
//
// Video hero
//
.hero-video {
// poster image
background: $brand-main-blue-dark url('../img/hero-video-poster.jpg') no-repeat center center;
background-size: cover;
}
.hero-video .menu,
.hero-video__content {
@media ($screen-md) {
position: absolute;
left: 0;
right: 0;
top: 0;
}
}
.hero-video__content {
@media ($screen-md) {
z-index: 1;
bottom: 0;
display: flex;
flex-wrap: wrap;
align-items: center;
}
}
// video container
.hero-video__background {
z-index: 0;
@media ($screen-md) {
max-height: 100vh;
}
}
// the video itself
.hero-video__video {
@extend .img--responsive;
}