1
0
mirror of https://github.com/bigchaindb/site.git synced 2024-11-02 00:05:37 +01:00
site/_src/_assets/styles/bigchain/_content-page.scss

56 lines
1.3 KiB
SCSS
Raw Normal View History

2016-01-14 13:04:44 +01:00
.content--page--markdown {
padding-top: ($spacer * 2);
padding-bottom: ($spacer * 2);
@media ($screen-sm) {
padding-top: ($spacer * 5);
padding-bottom: ($spacer * 5);
2016-01-14 13:04:44 +01:00
}
2017-05-31 00:22:14 +02:00
> h1,
h2 {
&:not(#heading-1):not(#heading-2) {
border-bottom: 1px solid $brand-main-blue-light;
padding-bottom: $spacer;
margin-bottom: ($spacer * 2);
text-align: center;
}
2016-01-17 16:43:46 +01:00
.header-link {
2016-02-10 00:31:35 +01:00
box-shadow: none;
2016-01-17 16:43:46 +01:00
transition-timing-function: $timing-bounce;
display: inline-block;
2016-02-10 00:31:35 +01:00
padding: 0 .25rem;
2016-01-17 16:43:46 +01:00
opacity: 0;
2017-05-31 00:22:14 +02:00
transform: translate3d(20px, 0, 0) scale(0);
2016-01-17 16:43:46 +01:00
&,
.header-icon {
@extend .transition;
}
&:hover,
&:focus {
background: none;
.header-icon {
color: lighten($brand-primary, 10%);
}
}
.header-icon {
font-style: normal;
font-size: 2rem;
color: $brand-primary;
}
}
&:hover {
.header-link {
opacity: 1;
2017-05-31 00:22:14 +02:00
transform: translate3d(0, 0, 0) scale(.8);
}
2016-01-17 16:43:46 +01:00
}
2016-01-09 18:36:18 +01:00
}
}