2018-11-08 12:33:20 +01:00
|
|
|
@import 'variables';
|
|
|
|
|
|
|
|
.wrapper {
|
2018-11-23 12:56:12 +01:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2018-11-08 12:33:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar {
|
2018-11-09 19:08:36 +01:00
|
|
|
margin-top: $spacer / 2;
|
2018-11-15 15:45:07 +01:00
|
|
|
margin-bottom: $spacer / 2;
|
2018-11-10 01:08:20 +01:00
|
|
|
top: $spacer;
|
2018-11-23 12:56:12 +01:00
|
|
|
order: 2;
|
2018-11-08 12:33:20 +01:00
|
|
|
|
2018-11-15 15:45:07 +01:00
|
|
|
@media (min-width: $break-point--medium) {
|
|
|
|
width: 27%;
|
|
|
|
margin-bottom: 0;
|
2019-01-22 17:14:02 +01:00
|
|
|
margin-top: 0;
|
2018-11-23 12:56:12 +01:00
|
|
|
order: 1;
|
2018-11-15 15:45:07 +01:00
|
|
|
|
|
|
|
+ .main {
|
|
|
|
width: 73%;
|
|
|
|
}
|
2018-11-10 01:08:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.main {
|
2018-11-23 12:56:12 +01:00
|
|
|
width: 100%;
|
2018-11-10 01:08:20 +01:00
|
|
|
background: $brand-white;
|
2018-11-23 12:56:12 +01:00
|
|
|
padding: 0 $spacer / 2;
|
2018-11-10 01:08:20 +01:00
|
|
|
border: 1px solid $brand-grey-lighter;
|
2018-11-23 12:56:12 +01:00
|
|
|
border-top: 0;
|
|
|
|
order: 1;
|
|
|
|
|
|
|
|
@media (min-width: $break-point--small) {
|
|
|
|
padding-left: $spacer;
|
|
|
|
padding-right: $spacer;
|
|
|
|
}
|
2018-11-10 01:08:20 +01:00
|
|
|
|
|
|
|
@media (min-width: $break-point--medium) {
|
2018-11-23 12:56:12 +01:00
|
|
|
padding-left: $spacer * 2;
|
|
|
|
padding-right: $spacer * 2;
|
|
|
|
order: 2;
|
2018-11-08 17:33:56 +01:00
|
|
|
}
|
2018-11-08 12:33:20 +01:00
|
|
|
}
|
2018-11-08 13:21:39 +01:00
|
|
|
|
2018-11-08 22:52:42 +01:00
|
|
|
.mainSingle {
|
2018-11-10 01:08:20 +01:00
|
|
|
composes: main;
|
2018-11-10 16:48:28 +01:00
|
|
|
max-width: 73%;
|
2018-11-08 22:52:42 +01:00
|
|
|
margin: auto;
|
|
|
|
}
|
2019-01-22 22:06:06 +01:00
|
|
|
|
|
|
|
.version {
|
2019-04-17 13:36:30 +02:00
|
|
|
color: $brand-grey-light;
|
2019-01-22 22:06:06 +01:00
|
|
|
font-size: $font-size-base;
|
|
|
|
font-family: $font-family-monospace;
|
2019-04-17 13:36:30 +02:00
|
|
|
|
|
|
|
a {
|
|
|
|
font-size: $font-size-mini;
|
|
|
|
font-family: $font-family-base;
|
|
|
|
font-weight: $font-weight-base;
|
|
|
|
display: inline-block;
|
|
|
|
margin-left: .5rem;
|
|
|
|
}
|
2019-01-22 22:06:06 +01:00
|
|
|
}
|
2019-02-23 19:00:46 +01:00
|
|
|
|
|
|
|
.pathName {
|
|
|
|
font-size: $font-size-h3;
|
|
|
|
border-bottom: 1px solid $brand-grey-lighter;
|
|
|
|
padding-bottom: $spacer / 2;
|
|
|
|
margin-top: $spacer * 2;
|
2019-03-27 14:47:25 +01:00
|
|
|
margin-bottom: $spacer / $line-height;
|
2019-03-27 16:46:56 +01:00
|
|
|
overflow-wrap: break-word;
|
|
|
|
word-wrap: break-word;
|
|
|
|
word-break: break-all;
|
2019-02-23 19:00:46 +01:00
|
|
|
}
|