2021-04-04 12:38:17 -05:00
|
|
|
:root {
|
2021-04-08 14:48:23 -05:00
|
|
|
--color-text: #999;
|
|
|
|
--color-text-dimmed: #666;
|
|
|
|
--color-text-bright: #fff;
|
2021-05-08 18:07:38 +02:00
|
|
|
--color-background: #000;
|
2021-05-08 18:29:53 +02:00
|
|
|
|
2021-04-04 13:18:33 -05:00
|
|
|
--font-primary: "Roboto Condensed";
|
|
|
|
--font-secondary: "Roboto";
|
2021-05-07 16:22:07 +02:00
|
|
|
|
2022-09-08 12:11:56 -07:00
|
|
|
--font-size: 20px;
|
2022-09-13 13:58:56 -07:00
|
|
|
--font-size-xsmall: 1rem;
|
2022-09-13 12:44:10 -07:00
|
|
|
--font-size-small: 1rem;
|
|
|
|
--font-size-medium: 1.5rem;
|
|
|
|
--font-size-large: 3.25rem;
|
|
|
|
--font-size-xlarge: 3.75rem;
|
2021-05-08 18:29:53 +02:00
|
|
|
|
2021-05-14 17:09:46 +02:00
|
|
|
--gap-body-top: 60px;
|
|
|
|
--gap-body-right: 60px;
|
|
|
|
--gap-body-bottom: 60px;
|
|
|
|
--gap-body-left: 60px;
|
|
|
|
|
|
|
|
--gap-modules: 30px;
|
2021-04-04 12:38:17 -05:00
|
|
|
}
|
|
|
|
|
2016-04-03 19:52:13 +02:00
|
|
|
html {
|
2016-04-05 15:43:52 -04:00
|
|
|
cursor: none;
|
2021-04-04 11:51:04 -05:00
|
|
|
overflow: hidden;
|
2021-04-04 12:38:17 -05:00
|
|
|
background: var(--color-background);
|
2021-04-04 11:51:04 -05:00
|
|
|
user-select: none;
|
2021-04-08 14:51:07 -05:00
|
|
|
font-size: var(--font-size);
|
2016-04-03 19:52:13 +02:00
|
|
|
}
|
|
|
|
|
2016-09-08 15:47:16 -04:00
|
|
|
::-webkit-scrollbar {
|
|
|
|
display: none;
|
2016-04-13 09:58:56 +02:00
|
|
|
}
|
|
|
|
|
2016-04-03 19:52:13 +02:00
|
|
|
body {
|
2021-05-14 17:09:46 +02:00
|
|
|
margin: var(--gap-body-top) var(--gap-body-right) var(--gap-body-bottom) var(--gap-body-left);
|
2021-04-04 11:51:04 -05:00
|
|
|
position: absolute;
|
2021-05-14 17:09:46 +02:00
|
|
|
height: calc(100% - var(--gap-body-top) - var(--gap-body-bottom));
|
|
|
|
width: calc(100% - var(--gap-body-right) - var(--gap-body-left));
|
2021-04-04 12:38:17 -05:00
|
|
|
background: var(--color-background);
|
|
|
|
color: var(--color-text);
|
2021-04-04 13:18:33 -05:00
|
|
|
font-family: var(--font-primary), sans-serif;
|
2016-04-05 15:43:52 -04:00
|
|
|
font-weight: 400;
|
2021-04-04 13:05:41 -05:00
|
|
|
line-height: 1.5;
|
2016-04-05 15:43:52 -04:00
|
|
|
-webkit-font-smoothing: antialiased;
|
2016-03-24 17:19:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Default styles.
|
|
|
|
*/
|
|
|
|
|
2016-04-05 15:43:52 -04:00
|
|
|
.dimmed {
|
2021-04-08 14:48:23 -05:00
|
|
|
color: var(--color-text-dimmed);
|
2016-04-05 15:43:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.normal {
|
2021-04-04 12:38:17 -05:00
|
|
|
color: var(--color-text);
|
2016-04-05 15:43:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.bright {
|
2021-04-08 14:48:23 -05:00
|
|
|
color: var(--color-text-bright);
|
2016-04-05 15:43:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.xsmall {
|
2022-09-08 12:11:56 -07:00
|
|
|
font-size: var(--font-size-xsmall);
|
2021-04-17 09:38:33 +02:00
|
|
|
line-height: 1.275;
|
2016-04-05 15:43:52 -04:00
|
|
|
}
|
2021-04-04 11:51:04 -05:00
|
|
|
|
2016-04-05 15:43:52 -04:00
|
|
|
.small {
|
2022-09-08 12:11:56 -07:00
|
|
|
font-size: var(--font-size-small);
|
2021-04-17 09:38:33 +02:00
|
|
|
line-height: 1.25;
|
2016-04-05 15:43:52 -04:00
|
|
|
}
|
2021-04-04 11:51:04 -05:00
|
|
|
|
2016-04-05 15:43:52 -04:00
|
|
|
.medium {
|
2022-09-08 12:11:56 -07:00
|
|
|
font-size: var(--font-size-medium);
|
2021-04-17 09:38:33 +02:00
|
|
|
line-height: 1.225;
|
2016-04-05 15:43:52 -04:00
|
|
|
}
|
2021-04-04 11:51:04 -05:00
|
|
|
|
2016-04-05 15:43:52 -04:00
|
|
|
.large {
|
2022-09-08 12:11:56 -07:00
|
|
|
font-size: var(--font-size-large);
|
2021-04-04 12:53:35 -05:00
|
|
|
line-height: 1;
|
2016-04-05 15:43:52 -04:00
|
|
|
}
|
2021-04-04 11:51:04 -05:00
|
|
|
|
2016-04-05 15:43:52 -04:00
|
|
|
.xlarge {
|
2022-09-08 12:11:56 -07:00
|
|
|
font-size: var(--font-size-xlarge);
|
2021-04-04 12:53:35 -05:00
|
|
|
line-height: 1;
|
2021-04-04 11:51:04 -05:00
|
|
|
letter-spacing: -3px;
|
2016-04-05 15:43:52 -04:00
|
|
|
}
|
2016-03-29 13:28:15 +02:00
|
|
|
|
2016-04-05 15:43:52 -04:00
|
|
|
.thin {
|
2021-04-04 13:18:33 -05:00
|
|
|
font-family: var(--font-secondary), sans-serif;
|
2016-04-05 15:43:52 -04:00
|
|
|
font-weight: 100;
|
|
|
|
}
|
|
|
|
|
|
|
|
.light {
|
2021-04-04 13:18:33 -05:00
|
|
|
font-family: var(--font-primary), sans-serif;
|
2016-04-05 15:43:52 -04:00
|
|
|
font-weight: 300;
|
|
|
|
}
|
|
|
|
|
|
|
|
.regular {
|
2021-04-04 13:18:33 -05:00
|
|
|
font-family: var(--font-primary), sans-serif;
|
2016-04-05 15:43:52 -04:00
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bold {
|
2021-04-04 13:18:33 -05:00
|
|
|
font-family: var(--font-primary), sans-serif;
|
2016-04-05 15:43:52 -04:00
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
.align-right {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.align-left {
|
|
|
|
text-align: left;
|
|
|
|
}
|
2016-03-29 13:28:15 +02:00
|
|
|
|
2016-03-24 17:19:32 +01:00
|
|
|
header {
|
2016-04-05 15:43:52 -04:00
|
|
|
text-transform: uppercase;
|
2021-05-08 18:29:53 +02:00
|
|
|
font-size: var(--font-size-small);
|
2021-04-04 13:18:33 -05:00
|
|
|
font-family: var(--font-primary), Arial, Helvetica, sans-serif;
|
2016-04-05 15:43:52 -04:00
|
|
|
font-weight: 400;
|
2021-04-17 09:50:12 +02:00
|
|
|
border-bottom: 1px solid var(--color-text-dimmed);
|
2016-04-13 09:23:54 +02:00
|
|
|
line-height: 15px;
|
|
|
|
padding-bottom: 5px;
|
2016-04-05 15:43:52 -04:00
|
|
|
margin-bottom: 10px;
|
2021-04-17 09:50:12 +02:00
|
|
|
color: var(--color-text);
|
2016-03-24 17:19:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
sup {
|
2016-04-05 15:43:52 -04:00
|
|
|
font-size: 50%;
|
|
|
|
line-height: 50%;
|
2016-03-24 17:19:32 +01:00
|
|
|
}
|
2016-04-01 10:25:54 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Module styles.
|
|
|
|
*/
|
|
|
|
|
|
|
|
.module {
|
2021-05-07 16:22:07 +02:00
|
|
|
margin-bottom: var(--gap-modules);
|
2016-04-01 10:25:54 +02:00
|
|
|
}
|
2016-04-05 15:43:52 -04:00
|
|
|
|
2022-03-25 23:40:25 +01:00
|
|
|
.module.hidden {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.module:not(.hidden) {
|
|
|
|
pointer-events: auto;
|
|
|
|
}
|
|
|
|
|
2016-10-15 17:06:52 +02:00
|
|
|
.region.bottom .module {
|
2021-05-07 16:22:07 +02:00
|
|
|
margin-top: var(--gap-modules);
|
2016-10-15 17:11:03 +02:00
|
|
|
margin-bottom: 0;
|
2016-04-01 10:25:54 +02:00
|
|
|
}
|
|
|
|
|
2017-03-11 17:36:47 -06:00
|
|
|
.no-wrap {
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
2018-09-24 23:01:17 +08:00
|
|
|
.pre-line {
|
|
|
|
white-space: pre-line;
|
|
|
|
}
|
|
|
|
|
2016-03-24 17:19:32 +01:00
|
|
|
/**
|
2021-04-04 11:51:04 -05:00
|
|
|
* Region Definitions.
|
2016-03-24 17:19:32 +01:00
|
|
|
*/
|
|
|
|
|
2021-04-04 11:51:04 -05:00
|
|
|
.region {
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
2016-04-05 13:39:52 +02:00
|
|
|
.region.fullscreen {
|
2016-04-05 15:43:52 -04:00
|
|
|
position: absolute;
|
2021-05-14 17:09:46 +02:00
|
|
|
top: calc(-1 * var(--gap-body-top));
|
|
|
|
left: calc(-1 * var(--gap-body-left));
|
|
|
|
right: calc(-1 * var(--gap-body-right));
|
|
|
|
bottom: calc(-1 * var(--gap-body-bottom));
|
2017-01-04 19:22:59 +01:00
|
|
|
pointer-events: none;
|
|
|
|
}
|
2021-04-04 11:51:04 -05:00
|
|
|
|
|
|
|
.region.right {
|
|
|
|
right: 0;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.region.top {
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.region.top.center,
|
|
|
|
.region.bottom.center {
|
|
|
|
left: 50%;
|
|
|
|
transform: translateX(-50%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.region.top.right,
|
|
|
|
.region.top.left,
|
|
|
|
.region.top.center {
|
|
|
|
top: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.region.bottom {
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.region.bottom.right,
|
|
|
|
.region.bottom.center,
|
|
|
|
.region.bottom.left {
|
|
|
|
bottom: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.region.bar {
|
2016-04-05 15:43:52 -04:00
|
|
|
width: 100%;
|
2021-04-04 11:51:04 -05:00
|
|
|
text-align: center;
|
2016-03-24 17:19:32 +01:00
|
|
|
}
|
2016-04-05 15:43:52 -04:00
|
|
|
|
2021-04-04 11:51:04 -05:00
|
|
|
.region.third,
|
|
|
|
.region.middle.center {
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
transform: translateY(-50%);
|
2016-03-24 17:19:32 +01:00
|
|
|
}
|
2016-04-05 15:43:52 -04:00
|
|
|
|
2021-04-04 11:51:04 -05:00
|
|
|
.region.upper.third {
|
|
|
|
top: 33%;
|
2014-02-19 16:45:36 +01:00
|
|
|
}
|
2016-04-05 15:43:52 -04:00
|
|
|
|
2021-04-04 11:51:04 -05:00
|
|
|
.region.middle.center {
|
|
|
|
top: 50%;
|
2014-02-24 11:19:51 +01:00
|
|
|
}
|
2016-04-05 15:43:52 -04:00
|
|
|
|
2021-04-04 11:51:04 -05:00
|
|
|
.region.lower.third {
|
|
|
|
top: 66%;
|
2014-02-26 14:14:29 +01:00
|
|
|
}
|
2016-04-05 15:43:52 -04:00
|
|
|
|
2021-04-04 11:51:04 -05:00
|
|
|
.region.left {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.region table {
|
|
|
|
width: 100%;
|
|
|
|
border-spacing: 0;
|
|
|
|
border-collapse: separate;
|
2016-04-03 19:52:13 +02:00
|
|
|
}
|