2017-06-05 17:06:36 +02:00
|
|
|
|
2017-06-09 15:27:09 +02:00
|
|
|
/*
|
2017-06-05 17:06:36 +02:00
|
|
|
|
2017-06-09 15:27:09 +02:00
|
|
|
Colors:
|
|
|
|
Blue color = #38608F
|
|
|
|
Dark blue color = #153B62
|
|
|
|
Gold color = #FCB316
|
|
|
|
Grey color = #707174
|
|
|
|
Red color = #C83737
|
|
|
|
|
|
|
|
*/
|
2017-06-05 17:06:36 +02:00
|
|
|
|
|
|
|
*, *::before, *::after {
|
|
|
|
font-family: inherit;
|
|
|
|
color: inherit;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
2017-06-09 15:27:09 +02:00
|
|
|
font-size: calc(1em + 0.33vw);
|
2017-06-05 17:06:36 +02:00
|
|
|
font-family: PT Sans, sans-serif;
|
|
|
|
line-height: 1.5;
|
2017-06-09 15:27:09 +02:00
|
|
|
color: #111;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
max-width: 30rem;
|
|
|
|
margin: 0 auto;
|
2017-06-05 17:06:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
* + * {
|
2017-06-09 15:27:09 +02:00
|
|
|
margin-top: 2.25rem;
|
2017-06-05 17:06:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
br,
|
|
|
|
dt,
|
|
|
|
dd,
|
|
|
|
th,
|
|
|
|
td,
|
|
|
|
option,
|
|
|
|
[hidden] + *,
|
|
|
|
li + li {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
p + p {
|
|
|
|
margin-top: 0.75rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
border-bottom: 1px solid;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
:focus:not([tabindex="-1"]) {
|
|
|
|
outline: 2px solid;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* fix for IE :( */
|
|
|
|
div:not([tabindex]):focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1, h2, h3, h4 {
|
2017-06-09 15:27:09 +02:00
|
|
|
font-family: Miriam Libre, serif;
|
2017-06-05 17:06:36 +02:00
|
|
|
line-height: 1.125;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
2017-06-09 15:27:09 +02:00
|
|
|
font-size: 2.25rem;
|
2017-06-05 17:06:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
2017-06-09 15:27:09 +02:00
|
|
|
font-size: 1.66rem;
|
2017-06-05 17:06:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
2017-06-09 15:27:09 +02:00
|
|
|
font-size: 1.25rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
font-size: 1rem;
|
|
|
|
font-family: PT Sans, sans-serif;
|
2017-06-05 17:06:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
kbd {
|
|
|
|
line-height: 1;
|
2017-06-09 15:27:09 +02:00
|
|
|
font-size: 0.66rem;
|
|
|
|
padding: 0.1rem 0.25rem;
|
2017-06-05 17:06:36 +02:00
|
|
|
border-radius: 0.25rem;
|
2017-06-09 15:27:09 +02:00
|
|
|
border: 2px solid;
|
|
|
|
box-shadow: 0.125rem 0.125rem 0 #111;
|
2017-06-05 17:06:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
code {
|
|
|
|
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
2017-06-09 15:27:09 +02:00
|
|
|
font-size: 0.85rem;
|
2017-06-05 17:06:36 +02:00
|
|
|
}
|
|
|
|
|
2017-06-09 15:27:09 +02:00
|
|
|
/* Buttons */
|
|
|
|
|
|
|
|
button {
|
|
|
|
font-size: inherit;
|
|
|
|
font-family: inherit;
|
|
|
|
font-weight: inherit;
|
2017-06-05 17:06:36 +02:00
|
|
|
}
|
|
|
|
|
2017-06-09 15:27:09 +02:00
|
|
|
/* Tables */
|
2017-06-05 17:06:36 +02:00
|
|
|
|
|
|
|
table {
|
|
|
|
text-align: left;
|
|
|
|
table-layout: fixed;
|
|
|
|
width: 100%;
|
|
|
|
border-collapse: collapse;
|
|
|
|
}
|
|
|
|
|
|
|
|
th, td {
|
|
|
|
border: 2px solid;
|
|
|
|
padding: 0.5rem;
|
|
|
|
line-height: 1;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
caption {
|
|
|
|
font-size: 1.125rem;
|
|
|
|
padding-bottom: 0.25rem;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
th:empty {
|
|
|
|
border: 0;
|
|
|
|
}
|
2017-06-09 15:27:09 +02:00
|
|
|
|
|
|
|
/* Notes and warnings */
|
|
|
|
|
|
|
|
.note {
|
|
|
|
border-left: 0.5rem solid #FCB316;
|
|
|
|
font-size: 0.85rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.note > div {
|
|
|
|
margin-left: 0.75rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.note > div > img:first-child {
|
|
|
|
height: 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.note.warning {
|
|
|
|
border-color: #C83737;
|
|
|
|
}
|
|
|
|
|
|
|
|
.note > div > :first-child + * {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Code blocks */
|
|
|
|
|
|
|
|
pre[class*=language-] {
|
|
|
|
padding: 1rem;
|
|
|
|
background: none;
|
|
|
|
border: 0.125rem solid #eee;
|
|
|
|
margin-top: 2.25rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
pre[class*=language-][data-line] {
|
|
|
|
padding: 1em 0 1em 2.25rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
pre[class*=language-] code * {
|
|
|
|
margin-top: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
[data-codeblock-shortcode] {
|
|
|
|
display: block;
|
|
|
|
margin-top: -1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.token.property,
|
|
|
|
.token.tag,
|
|
|
|
.token.boolean,
|
|
|
|
.token.number,
|
|
|
|
.token.constant,
|
|
|
|
.token.symbol,
|
|
|
|
.token.deleted {
|
|
|
|
color: #38608F;
|
|
|
|
}
|
|
|
|
|
|
|
|
.token.selector,
|
|
|
|
.token.attr-name,
|
|
|
|
.token.string,
|
|
|
|
.token.char,
|
|
|
|
.token.builtin,
|
|
|
|
.token.inserted {
|
|
|
|
color: #EBA205;
|
|
|
|
}
|
|
|
|
|
|
|
|
.token.operator,
|
|
|
|
.token.entity,
|
|
|
|
.token.url,
|
|
|
|
.language-css .token.string,
|
|
|
|
.style .token.string {
|
|
|
|
color: #a67f59;
|
|
|
|
background: hsla(0, 0%, 100%, .5);
|
|
|
|
}
|
|
|
|
|
|
|
|
.token.atrule,
|
|
|
|
.token.attr-value,
|
|
|
|
.token.keyword {
|
|
|
|
color: #07a;
|
|
|
|
}
|
|
|
|
|
|
|
|
.token.function {
|
|
|
|
color: #375D84;
|
|
|
|
}
|
|
|
|
|
|
|
|
.line-numbers code {
|
|
|
|
padding-left: 2.25rem;
|
|
|
|
margin-top: -1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.line-numbers {
|
|
|
|
padding-bottom: 2.25rem !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.line-numbers .line-numbers-rows {
|
|
|
|
margin-left: 2.25rem;
|
|
|
|
top: 1.25rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Expandable sections */
|
|
|
|
|
|
|
|
[data-expands] {
|
|
|
|
text-align: left;
|
|
|
|
border: 0;
|
|
|
|
background: none;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
[data-expands] svg {
|
|
|
|
width: 1em;
|
|
|
|
height: 1em;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
[data-expands][aria-expanded="true"] svg .up-strut {
|
|
|
|
display: none;
|
|
|
|
}
|