2018-11-08 12:33:20 +01:00
|
|
|
@import 'variables';
|
|
|
|
|
|
|
|
.wrapper {
|
2018-11-08 13:21:39 +01:00
|
|
|
@media (min-width: $break-point--medium) {
|
2018-11-08 12:33:20 +01:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar {
|
|
|
|
flex: 0 0 25%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main {
|
|
|
|
flex: 0 0 70%;
|
|
|
|
}
|
2018-11-08 13:21:39 +01:00
|
|
|
|
|
|
|
.header {
|
|
|
|
margin-top: $spacer;
|
|
|
|
margin-bottom: $spacer * $line-height;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title {
|
|
|
|
font-size: $font-size-h1;
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: $spacer / $line-height;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lead {
|
|
|
|
font-size: $font-size-large;
|
|
|
|
}
|
|
|
|
|
|
|
|
.docContent {
|
|
|
|
figcaption {
|
|
|
|
font-size: $font-size-small;
|
|
|
|
text-align: center;
|
|
|
|
color: $brand-grey-light;
|
|
|
|
margin-top: $spacer / 2;
|
|
|
|
}
|
|
|
|
}
|