2021-02-13 08:55:59 +01:00
|
|
|
// @import "~antd/dist/antd.dark";
|
2021-01-09 22:12:14 +01:00
|
|
|
|
2020-09-30 23:59:20 +02:00
|
|
|
html,
|
|
|
|
body {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2021-04-09 04:22:46 +02:00
|
|
|
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue',
|
|
|
|
Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
|
|
|
|
'Noto Color Emoji';
|
2020-10-22 10:03:15 +02:00
|
|
|
|
2021-02-14 09:41:20 +01:00
|
|
|
font-size: 16px;
|
2021-01-09 22:12:14 +01:00
|
|
|
|
2021-02-14 09:41:20 +01:00
|
|
|
background-color: var(--default-bg-color);
|
|
|
|
color: var(--default-text-color);
|
2020-09-30 23:59:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
2021-02-14 09:41:20 +01:00
|
|
|
color: var(--default-link-color);
|
2021-02-13 08:55:59 +01:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: var(--default-text-color);
|
|
|
|
}
|
2020-09-30 23:59:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2021-02-14 10:30:42 +01:00
|
|
|
|
|
|
|
p,
|
|
|
|
p.description,
|
2021-05-23 08:27:51 +02:00
|
|
|
.description,
|
2021-02-14 10:30:42 +01:00
|
|
|
.ant-typography {
|
2021-01-18 04:51:38 +01:00
|
|
|
font-weight: 300;
|
2021-02-14 10:30:42 +01:00
|
|
|
margin: 1em 0;
|
2021-04-09 04:22:46 +02:00
|
|
|
color: var(--white-75);
|
2021-01-18 04:51:38 +01:00
|
|
|
}
|
2020-11-13 12:43:28 +01:00
|
|
|
pre {
|
|
|
|
display: block;
|
|
|
|
padding: 1rem;
|
2021-04-09 04:22:46 +02:00
|
|
|
margin: 0.5rem 0;
|
2021-02-14 09:41:20 +01:00
|
|
|
background-color: var(--code-bg-color);
|
|
|
|
color: var(--white-50);
|
2020-11-13 12:43:28 +01:00
|
|
|
}
|
2021-01-09 22:12:14 +01:00
|
|
|
|
2021-01-03 10:54:04 +01:00
|
|
|
code {
|
2021-02-14 09:41:20 +01:00
|
|
|
color: var(--code-color);
|
|
|
|
background-color: var(--white-15);
|
|
|
|
display: inline-block;
|
|
|
|
padding: 2px 4px;
|
|
|
|
border-radius: 4px;
|
2021-04-09 04:22:46 +02:00
|
|
|
font-size: 0.88em;
|
2021-01-03 10:54:04 +01:00
|
|
|
}
|
2020-10-22 10:03:15 +02:00
|
|
|
|
2021-03-24 22:12:22 +01:00
|
|
|
strong {
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
2021-01-19 19:34:06 +01:00
|
|
|
|
2021-02-04 18:17:20 +01:00
|
|
|
.logo-svg {
|
|
|
|
height: 2rem;
|
|
|
|
width: 2rem;
|
2021-01-10 00:17:06 +01:00
|
|
|
}
|
2021-01-09 22:12:14 +01:00
|
|
|
|
2021-02-13 08:55:59 +01:00
|
|
|
.line-chart-container {
|
|
|
|
margin: 2em auto;
|
2021-02-14 09:41:20 +01:00
|
|
|
padding: 1em;
|
|
|
|
border: 1px solid var(--gray-dark);
|
2021-05-23 08:27:51 +02:00
|
|
|
|
|
|
|
canvas {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
2021-02-13 08:55:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.form-module {
|
|
|
|
margin: 1em 0;
|
|
|
|
background-color: var(--container-bg-color);
|
|
|
|
padding: 2em;
|
|
|
|
border-radius: var(--container-border-radius);
|
2021-02-15 03:46:34 +01:00
|
|
|
|
|
|
|
h3 {
|
|
|
|
&:first-of-type {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
}
|
2021-02-13 08:55:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.row {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: flex-start;
|
|
|
|
|
|
|
|
@media (max-width: 980px) {
|
|
|
|
flex-direction: column;
|
|
|
|
.form-module {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
2021-01-27 10:46:08 +01:00
|
|
|
}
|
2021-04-09 04:22:46 +02:00
|
|
|
|
|
|
|
.stream-info-box {
|
2021-04-20 03:24:04 +02:00
|
|
|
font-size: 0.8em;
|
2021-04-09 04:22:46 +02:00
|
|
|
background-color: var(--purple-dark);
|
|
|
|
padding: 0.25rem 0.5rem;
|
|
|
|
margin-left: 0.5rem;
|
|
|
|
color: var(--white);
|
2021-04-20 03:24:04 +02:00
|
|
|
margin-bottom: 0px !important;
|
|
|
|
|
|
|
|
.ant-typography-copy {
|
|
|
|
font-size: 0.92em;
|
|
|
|
}
|
2021-04-09 04:22:46 +02:00
|
|
|
}
|
2021-05-23 08:27:51 +02:00
|
|
|
|
|
|
|
|
|
|
|
input {
|
|
|
|
&:not(:focus) {
|
|
|
|
&:invalid {
|
|
|
|
color: var(--ant-error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|