|
|
|
@ -1613,6 +1613,19 @@
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
:root {
|
|
|
|
|
--primary: #3e3e3e;
|
|
|
|
|
--primary-active: #585858;
|
|
|
|
|
--link: #3e3e3e;
|
|
|
|
|
--link-hover: #d95959;
|
|
|
|
|
--danger: #d95959;
|
|
|
|
|
--success: #64ac64;
|
|
|
|
|
--white: #ffffff;
|
|
|
|
|
--black: #000000;
|
|
|
|
|
--text: #363636;
|
|
|
|
|
--background: #f9f9f9;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* padding & margin
|
|
|
|
|
*
|
|
|
|
@ -1640,23 +1653,6 @@
|
|
|
|
|
* @link https://github.com/tentakelfabrik/crispy-css
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Heading
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @author Björn Hase, Tentakelfabrik
|
|
|
|
|
* @license http://opensource.org/licenses/MIT The MIT License
|
|
|
|
|
* @link https://github.com/tentakelfabrik/crispy-css
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* typograhy
|
|
|
|
|
*
|
|
|
|
|
* @author Björn Hase, Tentakelfabrik
|
|
|
|
|
* @license http://opensource.org/licenses/MIT The MIT License
|
|
|
|
|
* @link https://github.com/tentakelfabrik/crispy-css
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
html {
|
|
|
|
|
font-size: 100%;
|
|
|
|
|
line-height: 1.15;
|
|
|
|
@ -1689,6 +1685,10 @@ table {
|
|
|
|
|
border-spacing: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
figure {
|
|
|
|
|
margin: 0 0 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
figcaption {
|
|
|
|
|
margin: 10px 0;
|
|
|
|
|
}
|
|
|
|
@ -1697,6 +1697,7 @@ figcaption {
|
|
|
|
|
* form elements
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
button,
|
|
|
|
|
input,
|
|
|
|
@ -1769,7 +1770,8 @@ hr {
|
|
|
|
|
height: 0;
|
|
|
|
|
overflow: visible;
|
|
|
|
|
border: 0;
|
|
|
|
|
margin: 0.3em 0;
|
|
|
|
|
border-top: 1px solid #b3b2af;
|
|
|
|
|
margin: 0 0 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
progress {
|
|
|
|
@ -1784,6 +1786,31 @@ summary {
|
|
|
|
|
display: list-item;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
code,
|
|
|
|
|
pre,
|
|
|
|
|
kbd,
|
|
|
|
|
samp {
|
|
|
|
|
font-family: "IBM Plex Mono", sans-serif;
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Heading
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @author Björn Hase, Tentakelfabrik
|
|
|
|
|
* @license http://opensource.org/licenses/MIT The MIT License
|
|
|
|
|
* @link https://github.com/tentakelfabrik/crispy-css
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* typograhy
|
|
|
|
|
*
|
|
|
|
|
* @author Björn Hase, Tentakelfabrik
|
|
|
|
|
* @license http://opensource.org/licenses/MIT The MIT License
|
|
|
|
|
* @link https://github.com/tentakelfabrik/crispy-css
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
h1, .h1,
|
|
|
|
|
h2, .h2,
|
|
|
|
|
h3, .h3,
|
|
|
|
@ -1975,6 +2002,30 @@ dt {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
color: var(--link);
|
|
|
|
|
transition: color 0.5s;
|
|
|
|
|
}
|
|
|
|
|
a:hover {
|
|
|
|
|
color: var(--link-hover);
|
|
|
|
|
}
|
|
|
|
|
a:focus {
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* body
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
body {
|
|
|
|
|
font-family: "IBM Plex Mono", sans-serif;
|
|
|
|
|
color: var(--text);
|
|
|
|
|
background-color: var(--background);
|
|
|
|
|
direction: ltr;
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
line-height: 1.4;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
@ -4462,30 +4513,6 @@ dt {
|
|
|
|
|
padding-right: 10.125rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
a:focus {
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* body
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* line-height and breakpoints
|
|
|
|
|
* font-size and breakpoints
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
body {
|
|
|
|
|
font-family: "IBM Plex Mono", sans-serif;
|
|
|
|
|
background-color: #f9f9f9;
|
|
|
|
|
direction: ltr;
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
line-height: 1.4;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* borders
|
|
|
|
|
*
|
|
|
|
|