2019-01-02 00:11:47 +01:00
|
|
|
body {
|
|
|
|
-webkit-font-smoothing: antialiased; // Do not remove!
|
2021-12-23 05:21:23 +01:00
|
|
|
font-family: $font-sans;
|
2019-05-23 16:55:14 +02:00
|
|
|
font-size: 85%;
|
2019-01-02 00:11:47 +01:00
|
|
|
line-height: 1.5em;
|
|
|
|
color: $color-text-base;
|
|
|
|
}
|
|
|
|
|
2015-11-02 15:39:36 +01:00
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
2015-09-25 15:17:39 +02:00
|
|
|
font-weight: normal;
|
2014-07-17 16:39:22 +02:00
|
|
|
}
|
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
h1 {
|
|
|
|
line-height: 1.3em;
|
|
|
|
font-size: 1.5em;
|
|
|
|
color: $color-grey-1;
|
2020-06-18 18:18:08 +02:00
|
|
|
font-weight: 700;
|
2014-07-17 16:39:22 +02:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
span {
|
|
|
|
font-weight: 300;
|
2014-07-17 16:39:22 +02:00
|
|
|
}
|
|
|
|
}
|
2015-11-02 15:39:36 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
h2 {
|
|
|
|
font-size: 1.3em;
|
2021-12-23 05:21:23 +01:00
|
|
|
font-family: $font-sans;
|
2015-09-25 15:17:39 +02:00
|
|
|
font-weight: 600;
|
|
|
|
color: $color-grey-2;
|
2014-07-17 16:39:22 +02:00
|
|
|
}
|
2015-11-02 15:39:36 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
p {
|
|
|
|
margin-top: 0;
|
2014-09-10 14:04:28 +02:00
|
|
|
}
|
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
a {
|
2015-11-19 07:05:57 +01:00
|
|
|
// @include transition(color 0.2s ease, background-color 0.2s ease);
|
2015-09-25 15:17:39 +02:00
|
|
|
color: $color-link;
|
|
|
|
text-decoration: none;
|
2014-07-17 16:39:22 +02:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
&:hover {
|
|
|
|
color: $color-link-hover;
|
2014-07-17 16:39:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
code {
|
2015-11-27 11:20:59 +01:00
|
|
|
box-shadow: inset 0 0 4px 0 rgba(0, 0, 0, 0.2);
|
2015-09-25 15:17:39 +02:00
|
|
|
background-color: $color-fieldset-hover;
|
|
|
|
padding: 2px 5px;
|
2014-07-17 16:39:22 +02:00
|
|
|
}
|
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
kbd {
|
2015-11-03 18:12:12 +01:00
|
|
|
border-radius: 3px;
|
2021-12-23 05:21:23 +01:00
|
|
|
font-family: $font-sans;
|
2015-09-25 15:17:39 +02:00
|
|
|
border: 1px solid $color-grey-2;
|
2015-11-03 13:15:33 +01:00
|
|
|
border-color: rgba(0, 0, 0, 0.2);
|
2015-09-25 15:17:39 +02:00
|
|
|
padding: 0.3em 0.5em;
|
2014-07-17 16:39:22 +02:00
|
|
|
}
|
|
|
|
|
2016-02-12 18:29:59 +01:00
|
|
|
dl,
|
|
|
|
dt,
|
2015-11-02 15:39:36 +01:00
|
|
|
dd {
|
2015-09-25 15:17:39 +02:00
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2015-01-09 17:42:20 +01:00
|
|
|
}
|
2015-11-02 15:39:36 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
dl {
|
|
|
|
margin-top: 1em;
|
2015-01-09 17:42:20 +01:00
|
|
|
}
|
2015-11-02 15:39:36 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
dt {
|
2019-05-23 16:55:14 +02:00
|
|
|
color: $color-grey-2;
|
2015-09-25 15:17:39 +02:00
|
|
|
font-size: 0.9em;
|
2015-01-09 17:42:20 +01:00
|
|
|
}
|
2015-11-02 15:39:36 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
dd {
|
|
|
|
margin-bottom: 1em;
|
2015-01-09 17:42:20 +01:00
|
|
|
}
|