2018-12-26 08:45:53 +01:00
|
|
|
:root {
|
|
|
|
--black: #222222;
|
|
|
|
--white: #ffffff;
|
|
|
|
--gray-01: #262831;
|
|
|
|
--gray-02: #2f333e;
|
|
|
|
--gray-03: #393e4b;
|
|
|
|
--gray-04: #434958;
|
|
|
|
--gray-05: #4d5465;
|
|
|
|
--gray-06: #575f72;
|
|
|
|
--gray-07: #616a7f;
|
|
|
|
--gray-08: #6b758c;
|
|
|
|
--gray-09: #758099;
|
|
|
|
--gray-10: #7f8ba6;
|
|
|
|
--gray-11: #8997b4;
|
|
|
|
--gray-12: #95a2bb;
|
|
|
|
--gray-13: #a2adc3;
|
|
|
|
--gray-14: #aeb8cb;
|
|
|
|
--gray-15: #bbc3d3;
|
|
|
|
--gray-16: #c7ceda;
|
|
|
|
--gray-17: #d4d9e2;
|
|
|
|
--gray-18: #e0e4ea;
|
|
|
|
--gray-19: #edeff2;
|
|
|
|
--gray-20: #fafafa;
|
2018-12-27 07:22:35 +01:00
|
|
|
--root-font-size: 14px;
|
2019-01-05 23:49:15 +01:00
|
|
|
--radius: 2px;
|
2019-01-03 23:30:27 +01:00
|
|
|
--accent: 0, 255, 0;
|
2018-12-27 17:50:30 +01:00
|
|
|
--line-width: 3px;
|
2018-12-26 08:45:53 +01:00
|
|
|
--background: var(--gray-01);
|
2019-01-03 23:30:27 +01:00
|
|
|
--gutter: 0.5em;
|
|
|
|
--animation-speed-fast: 0.2s;
|
|
|
|
--animation-speed-medium: 0.3s;
|
|
|
|
--animation-speed-slow: 0.4s;
|
2018-12-26 08:45:53 +01:00
|
|
|
--font-regular: "Open Sans Regular", sans-serif;
|
|
|
|
--font-bold: "Open Sans Bold", sans-serif;
|
|
|
|
--font-light: "Open Sans Light", sans-serif;
|
|
|
|
--font-fjalla: "Fjalla One Regular", sans-serif;
|
2018-12-26 18:43:38 +01:00
|
|
|
/* breakpoint reference */
|
|
|
|
/* can not be used in @media as of yet */
|
|
|
|
--breakpoint-sm: 550px;
|
|
|
|
--breakpoint-md: 700px;
|
|
|
|
--breakpoint-lg: 900px;
|
2019-01-03 23:30:27 +01:00
|
|
|
--breakpoint-xl: 1100px;
|
2019-01-05 21:57:21 +01:00
|
|
|
--breakpoint-xxl: 1600px;
|
|
|
|
--z-index-link: 1000;
|
|
|
|
--z-index-header: 2000;
|
2019-01-06 08:06:33 +01:00
|
|
|
--z-index-tip: 3000;
|
|
|
|
--z-index-shade: 4000;
|
|
|
|
--z-index-modal: 5000;
|
|
|
|
--z-index-menu: 6000;
|
2018-12-26 08:45:53 +01:00
|
|
|
}
|
|
|
|
|
2018-12-27 00:46:53 +01:00
|
|
|
:root.is-link-block {
|
|
|
|
--link-height: 7em;
|
|
|
|
--url-height: 20%;
|
|
|
|
--edit-height: 30%;
|
|
|
|
}
|
|
|
|
|
|
|
|
:root.is-link-list {
|
|
|
|
--link-height: 4em;
|
|
|
|
--url-height: 30%;
|
|
|
|
--edit-height: 50%;
|
|
|
|
}
|
|
|
|
|
2018-12-26 08:45:53 +01:00
|
|
|
@media (min-width: 700px) {
|
2018-12-27 07:34:04 +01:00
|
|
|
:root {
|
|
|
|
--root-font-size: 16px;
|
|
|
|
}
|
2019-01-03 23:30:27 +01:00
|
|
|
|
2018-12-27 00:46:53 +01:00
|
|
|
:root.is-link-block {
|
2018-12-26 08:45:53 +01:00
|
|
|
--link-height: 9em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
::selection {
|
|
|
|
background-color: rgb(var(--accent));
|
|
|
|
color: var(--white);
|
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
|
|
|
font-size: var(--root-font-size);
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
background-color: var(--background);
|
|
|
|
color: var(--white);
|
|
|
|
font-size: 1rem;
|
2019-01-03 23:30:27 +01:00
|
|
|
line-height: 1.6;
|
2018-12-26 08:45:53 +01:00
|
|
|
font-family: var(--font-regular);
|
|
|
|
}
|