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