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;
|
2022-07-25 04:33:09 +02:00
|
|
|
line-height: theme('lineHeight.tight');
|
|
|
|
color: theme('colors.primary.DEFAULT');
|
2014-07-17 16:39:22 +02:00
|
|
|
}
|
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
h1 {
|
|
|
|
font-size: 1.5em;
|
2020-06-18 18:18:08 +02:00
|
|
|
font-weight: 700;
|
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;
|
|
|
|
font-weight: 600;
|
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 {
|
|
|
|
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 {
|
2022-07-09 08:32:51 +02:00
|
|
|
box-shadow: inset 0 0 4px 0 theme('colors.black-20');
|
|
|
|
background-color: $color-white;
|
2022-04-12 13:37:26 +02:00
|
|
|
font-family: $font-mono;
|
2015-09-25 15:17:39 +02:00
|
|
|
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;
|
2022-07-09 08:32:51 +02:00
|
|
|
border-color: theme('colors.black-20');
|
2015-09-25 15:17:39 +02:00
|
|
|
padding: 0.3em 0.5em;
|
2014-07-17 16:39:22 +02:00
|
|
|
}
|
|
|
|
|
2022-04-12 13:37:26 +02:00
|
|
|
pre {
|
|
|
|
font-family: $font-mono;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|