mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-01 15:55:36 +01:00
57 lines
1.2 KiB
SCSS
57 lines
1.2 KiB
SCSS
.content--page--markdown {
|
|
padding-top: ($spacer * 2);
|
|
padding-bottom: ($spacer * 2);
|
|
|
|
@media ($screen-sm) {
|
|
padding-top: ($spacer * 5);
|
|
padding-bottom: ($spacer * 5);
|
|
}
|
|
|
|
> h1,
|
|
h2,
|
|
.faq__question {
|
|
&:not(#heading-1):not(#heading-2) {
|
|
border-bottom: 1px solid $brand-main-blue-light;
|
|
padding-bottom: $spacer;
|
|
margin-bottom: ($spacer * 2);
|
|
text-align: center;
|
|
}
|
|
|
|
&:hover {
|
|
.header-link {
|
|
opacity: 1;
|
|
transform: translate3d(0, 0, 0) scale(.8);
|
|
}
|
|
}
|
|
}
|
|
|
|
.header-link {
|
|
box-shadow: none;
|
|
transition-timing-function: $timing-bounce;
|
|
display: inline-block;
|
|
padding: 0 .25rem;
|
|
opacity: 0;
|
|
transform: translate3d(20px, 0, 0) scale(0);
|
|
|
|
&,
|
|
.header-icon {
|
|
@extend .transition;
|
|
}
|
|
|
|
&:hover,
|
|
&:focus {
|
|
background: none;
|
|
|
|
.header-icon {
|
|
color: lighten($brand-primary, 10%);
|
|
}
|
|
}
|
|
|
|
.header-icon {
|
|
font-style: normal;
|
|
font-size: $font-size-lg;
|
|
color: $brand-primary;
|
|
}
|
|
}
|
|
}
|