mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-02 00:05:37 +01:00
40 lines
624 B
SCSS
40 lines
624 B
SCSS
.header {
|
|
@extend .background--photo;
|
|
}
|
|
|
|
// intro animation
|
|
.header__title,
|
|
.header__description,
|
|
.header__logo,
|
|
.header__label {
|
|
.wf-active &,
|
|
.wf-inactive & {
|
|
@extend .animation-slide-in-from-bottom;
|
|
animation-fill-mode: backwards;
|
|
}
|
|
}
|
|
|
|
.header__description,
|
|
.header__logo {
|
|
.wf-active &,
|
|
.wf-inactive & {
|
|
animation-delay: .3s;
|
|
}
|
|
}
|
|
|
|
.header__btn,
|
|
.header__label {
|
|
.wf-active &,
|
|
.wf-inactive & {
|
|
animation-delay: .5s;
|
|
}
|
|
}
|
|
|
|
.header__title {
|
|
position: relative;
|
|
z-index: 1;
|
|
text-align: center;
|
|
margin: 0;
|
|
padding: ($spacer * 5) 0;
|
|
}
|