2016-03-10 17:13:54 +01:00
|
|
|
/* ==========================================================================
|
|
|
|
BASE ELEMENTS
|
|
|
|
========================================================================== */
|
|
|
|
|
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
color: $text-color;
|
2016-04-05 21:18:05 +02:00
|
|
|
font-family: $global-font-family;
|
2016-03-31 04:20:55 +02:00
|
|
|
line-height: 1.5;
|
2016-03-21 21:36:24 +01:00
|
|
|
|
2016-03-10 17:13:54 +01:00
|
|
|
&.overflow--hidden {
|
|
|
|
/* when primary navigation is visible, the content in the background won't scroll */
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
2016-04-08 03:17:26 +02:00
|
|
|
margin: 2em 0 0.5em;
|
2016-03-30 22:59:48 +02:00
|
|
|
line-height: 1.2;
|
2016-04-05 21:18:05 +02:00
|
|
|
font-family: $header-font-family;
|
2016-03-31 04:20:55 +02:00
|
|
|
font-weight: bold;
|
2016-03-10 17:13:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
2016-03-30 22:59:48 +02:00
|
|
|
margin-top: 0;
|
|
|
|
font-size: $type-size-3;
|
2016-03-10 17:13:54 +01:00
|
|
|
}
|
2016-03-21 21:36:24 +01:00
|
|
|
|
2016-03-10 17:13:54 +01:00
|
|
|
h2 {
|
2016-03-30 22:59:48 +02:00
|
|
|
font-size: $type-size-4;
|
2016-03-10 17:13:54 +01:00
|
|
|
}
|
2016-03-21 21:36:24 +01:00
|
|
|
|
2016-03-10 17:13:54 +01:00
|
|
|
h3 {
|
2016-03-30 22:59:48 +02:00
|
|
|
font-size: $type-size-5;
|
2016-03-10 17:13:54 +01:00
|
|
|
}
|
2016-03-21 21:36:24 +01:00
|
|
|
|
2016-03-10 17:13:54 +01:00
|
|
|
h4 {
|
2016-03-30 22:59:48 +02:00
|
|
|
font-size: $type-size-6;
|
2016-03-10 17:13:54 +01:00
|
|
|
}
|
2016-03-21 21:36:24 +01:00
|
|
|
|
2016-03-10 17:13:54 +01:00
|
|
|
h5 {
|
2016-03-30 22:59:48 +02:00
|
|
|
font-size: $type-size-6;
|
2016-03-10 17:13:54 +01:00
|
|
|
}
|
2016-03-21 21:36:24 +01:00
|
|
|
|
2016-03-10 17:13:54 +01:00
|
|
|
h6 {
|
2016-03-30 22:59:48 +02:00
|
|
|
font-size: $type-size-6;
|
2016-03-10 17:13:54 +01:00
|
|
|
}
|
|
|
|
|
2016-04-14 18:23:32 +02:00
|
|
|
small, .small {
|
2016-03-30 22:59:48 +02:00
|
|
|
font-size: $type-size-6;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin-bottom: 1.3em;
|
2016-03-10 17:13:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
u,
|
|
|
|
ins {
|
|
|
|
text-decoration: none;
|
|
|
|
border-bottom: 1px solid $text-color;
|
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
del a {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* reduce orphans and widows when printing */
|
|
|
|
|
|
|
|
p, pre, blockquote, ul, ol, dl, figure, table, fieldset {
|
|
|
|
orphans: 3;
|
|
|
|
widows: 3;
|
|
|
|
}
|
|
|
|
|
2016-03-10 19:06:59 +01:00
|
|
|
/* abbreviations */
|
2016-03-10 17:13:54 +01:00
|
|
|
|
|
|
|
abbr[title],
|
|
|
|
abbr[data-original-title] {
|
|
|
|
text-decoration: none;
|
|
|
|
cursor: help;
|
|
|
|
border-bottom: 1px dotted $text-color;
|
|
|
|
}
|
|
|
|
|
2016-03-10 19:06:59 +01:00
|
|
|
/* blockquotes */
|
2016-03-10 17:13:54 +01:00
|
|
|
|
|
|
|
blockquote {
|
|
|
|
margin: 2em 1em 2em 0;
|
|
|
|
padding-left: 1em;
|
|
|
|
padding-right: 1em;
|
|
|
|
font-style: italic;
|
2016-04-05 21:18:05 +02:00
|
|
|
border-left: 0.25em solid $primary-color;
|
2016-03-21 21:36:24 +01:00
|
|
|
|
2016-03-10 17:13:54 +01:00
|
|
|
cite {
|
2016-03-31 04:20:55 +02:00
|
|
|
font-style: italic;
|
2016-03-21 21:36:24 +01:00
|
|
|
|
2016-03-10 17:13:54 +01:00
|
|
|
&:before {
|
|
|
|
content: "\2014";
|
|
|
|
padding-right: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-10 19:06:59 +01:00
|
|
|
/* links */
|
2016-03-10 17:13:54 +01:00
|
|
|
|
|
|
|
a {
|
|
|
|
&:focus {
|
|
|
|
@extend %tab-focus;
|
|
|
|
}
|
2016-03-21 21:36:24 +01:00
|
|
|
|
2016-03-10 17:13:54 +01:00
|
|
|
&:hover,
|
|
|
|
&:active {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-10 19:06:59 +01:00
|
|
|
/* code */
|
2016-03-10 17:13:54 +01:00
|
|
|
|
|
|
|
tt, code, kbd, samp, pre {
|
|
|
|
font-family: $monospace;
|
|
|
|
}
|
2016-03-21 21:36:24 +01:00
|
|
|
|
2016-03-10 17:13:54 +01:00
|
|
|
pre {
|
|
|
|
overflow-x: auto; // add scrollbars to wide code blocks
|
|
|
|
}
|
2016-03-21 21:36:24 +01:00
|
|
|
|
2016-03-30 22:59:48 +02:00
|
|
|
p > code,
|
2016-04-04 03:42:02 +02:00
|
|
|
a > code,
|
2016-04-04 03:52:52 +02:00
|
|
|
li > code,
|
2016-04-12 22:48:27 +02:00
|
|
|
figcaption > code,
|
|
|
|
td > code {
|
2016-03-10 17:13:54 +01:00
|
|
|
padding-top: 0.1rem;
|
|
|
|
padding-bottom: 0.1rem;
|
2016-03-30 22:59:48 +02:00
|
|
|
font-size: $type-size-6;
|
2016-03-25 14:33:28 +01:00
|
|
|
background: $code-background-color;
|
2016-03-23 03:59:39 +01:00
|
|
|
border: 1px solid $lighter-gray;
|
2016-03-10 17:13:54 +01:00
|
|
|
border-radius: $border-radius;
|
2016-04-01 03:41:00 +02:00
|
|
|
box-shadow: $box-shadow;
|
2016-03-21 21:36:24 +01:00
|
|
|
|
2016-03-10 17:13:54 +01:00
|
|
|
&:before, &:after {
|
|
|
|
letter-spacing: -0.2em;
|
|
|
|
content: "\00a0"; // non-breaking space
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-10 19:06:59 +01:00
|
|
|
/* horizontal rule */
|
2016-03-10 17:13:54 +01:00
|
|
|
|
|
|
|
hr {
|
|
|
|
display: block;
|
|
|
|
margin: 1em 0;
|
|
|
|
border: 0;
|
|
|
|
border-top: 1px solid $border-color;
|
|
|
|
}
|
|
|
|
|
2016-04-06 03:15:39 +02:00
|
|
|
/* lists */
|
|
|
|
|
|
|
|
ul li,
|
|
|
|
ol li {
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
li ul,
|
|
|
|
li ol {
|
|
|
|
margin-top: 0.5em;
|
|
|
|
}
|
|
|
|
|
2016-03-10 17:13:54 +01:00
|
|
|
/*
|
|
|
|
Media and embeds
|
|
|
|
========================================================================== */
|
|
|
|
|
|
|
|
/* Figures and images */
|
|
|
|
|
|
|
|
figure {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: flex-start;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
margin: 2em 0;
|
2016-03-21 21:36:24 +01:00
|
|
|
|
2016-03-10 17:13:54 +01:00
|
|
|
img,
|
|
|
|
iframe,
|
|
|
|
.fluid-width-video-wrapper {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
2016-03-21 21:36:24 +01:00
|
|
|
|
2016-03-10 17:13:54 +01:00
|
|
|
img {
|
|
|
|
width: 100%;
|
|
|
|
border-radius: $border-radius;
|
2016-04-05 21:18:05 +02:00
|
|
|
transition: $global-transition;
|
2016-03-10 17:13:54 +01:00
|
|
|
}
|
2016-03-21 21:36:24 +01:00
|
|
|
|
2016-03-10 17:13:54 +01:00
|
|
|
> a {
|
|
|
|
display: block;
|
|
|
|
}
|
2016-03-21 21:36:24 +01:00
|
|
|
|
2016-03-10 17:13:54 +01:00
|
|
|
&.half {
|
|
|
|
> a,
|
|
|
|
> img {
|
|
|
|
@include breakpoint($small) {
|
|
|
|
width: calc(50% - 0.5em);
|
|
|
|
}
|
|
|
|
}
|
2016-03-21 21:36:24 +01:00
|
|
|
|
2016-03-10 17:13:54 +01:00
|
|
|
figcaption {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
2016-03-21 21:36:24 +01:00
|
|
|
|
2016-03-10 17:13:54 +01:00
|
|
|
&.third {
|
|
|
|
> a,
|
|
|
|
> img {
|
|
|
|
@include breakpoint($small) {
|
|
|
|
width: calc(33.3333% - 0.5em);
|
|
|
|
}
|
|
|
|
}
|
2016-03-21 21:36:24 +01:00
|
|
|
|
2016-03-10 17:13:54 +01:00
|
|
|
figcaption {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Figure captions */
|
|
|
|
|
|
|
|
figcaption {
|
2016-03-30 22:59:48 +02:00
|
|
|
margin-bottom: 0.5em;
|
2016-03-10 17:13:54 +01:00
|
|
|
color: mix(#fff, $text-color, 25%);
|
2016-04-05 21:18:05 +02:00
|
|
|
font-family: $caption-font-family;
|
2016-03-30 22:59:48 +02:00
|
|
|
font-size: $type-size-6;
|
2016-03-21 21:36:24 +01:00
|
|
|
|
2016-03-10 17:13:54 +01:00
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
|
|
|
border-bottom: 1px solid $light-gray;
|
2016-04-05 21:18:05 +02:00
|
|
|
transition: $global-transition;
|
2016-03-21 21:36:24 +01:00
|
|
|
|
2016-03-10 17:13:54 +01:00
|
|
|
&:hover {
|
|
|
|
color: #000;
|
|
|
|
border-bottom-color: #000;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Fix IE9 SVG bug */
|
|
|
|
|
|
|
|
svg:not(:root) {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
Navigation lists
|
|
|
|
========================================================================== */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes margins, padding, and bullet points from navigation lists
|
|
|
|
*
|
|
|
|
* Example usage:
|
|
|
|
* <nav>
|
|
|
|
* <ul>
|
|
|
|
* <li><a href="#link-1">Link 1</a></li>
|
|
|
|
* <li><a href="#link-2">Link 2</a></li>
|
|
|
|
* <li><a href="#link-3">Link 3</a></li>
|
|
|
|
* </ul>
|
|
|
|
* </nav>
|
|
|
|
*/
|
|
|
|
|
|
|
|
nav {
|
|
|
|
ul {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2016-03-21 21:36:24 +01:00
|
|
|
|
2016-03-10 17:13:54 +01:00
|
|
|
li {
|
|
|
|
list-style: none;
|
|
|
|
}
|
2016-03-21 21:36:24 +01:00
|
|
|
|
2016-03-10 17:13:54 +01:00
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2016-04-06 03:15:39 +02:00
|
|
|
|
|
|
|
/* override white-space for nested lists */
|
|
|
|
ul li,
|
|
|
|
ol li {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
li ul,
|
|
|
|
li ol {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
2016-03-10 17:13:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Global animation transition
|
|
|
|
========================================================================== */
|
|
|
|
|
2016-03-18 20:07:02 +01:00
|
|
|
b, i, strong, em, blockquote, p, q, span, figure, img, h1, h2, header, input, a, tr, td, form button, input[type="submit"], .btn, .highlight, .archive__item-teaser {
|
2016-04-05 21:18:05 +02:00
|
|
|
transition: $global-transition;
|
2016-03-10 17:13:54 +01:00
|
|
|
}
|