File: /var/www/vhosts/creativefellows.nl/hermitage.creativefellows.nl/public/scss/_base.scss
@mixin animate($duration:0.3s){
transition: all $duration;
}
.no-js {
.toggle-main-navigation{display:none;}
}
.shadeout{
position:fixed;
top:0;
left:0;
right:0;
bottom:0;
background:rgba($black,0.45);
z-index:1;
opacity:1;
}
.page-row__spacer{
.default-spacer{height:1.5rem;}
.space-1{height:1.5rem;}
.space-2{height:3rem;}
.space-3{height:4.5rem;}
.space-4{height:6rem;}
.space-5{height:7.5rem;}
}
.space-half-line{margin-top:0.75rem;}
.space-1-line{margin-top:1.5rem;}
.come-in {
transform: translateY(150px);
animation: come-in 0.8s ease forwards;
}
.come-in:nth-child(odd) {
animation-duration: 0.6s; /* So they look staggered */
}
@keyframes come-in {
to { transform: translateY(0); }
}