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;
|
2020-10-22 10:03:15 +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";
|
|
|
|
|
2021-02-13 08:55:59 +01:00
|
|
|
font-size: 14px;
|
2021-01-09 22:12:14 +01:00
|
|
|
|
2021-02-13 08:55:59 +01:00
|
|
|
background-color: #000;
|
|
|
|
color: var(--default-text-color);;
|
2020-09-30 23:59:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
2021-02-13 08:55:59 +01:00
|
|
|
color: var(--owncast-purple);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: var(--default-text-color);
|
|
|
|
}
|
2020-09-30 23:59:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2021-01-18 04:51:38 +01:00
|
|
|
p {
|
|
|
|
font-weight: 300;
|
|
|
|
}
|
2020-11-13 12:43:28 +01:00
|
|
|
pre {
|
|
|
|
display: block;
|
|
|
|
padding: 1rem;
|
|
|
|
margin: .5rem 0;
|
2021-01-10 11:37:22 +01:00
|
|
|
background-color: rgb(44, 44, 44);
|
|
|
|
color:lightgrey;
|
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 {
|
|
|
|
color: var(--owncast-purple);
|
|
|
|
}
|
2020-10-22 10:03:15 +02:00
|
|
|
|
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
|
|
|
p.description {
|
2021-02-04 18:17:20 +01:00
|
|
|
margin: 1em 0;
|
|
|
|
color: #ccc;
|
2021-02-13 08:55:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.line-chart-container {
|
|
|
|
margin: 2em auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2.ant-typography.page-title,
|
|
|
|
h3.ant-typography.page-title
|
|
|
|
{
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 1.5em;
|
|
|
|
color: var(--nav-selected-text);
|
|
|
|
}
|
|
|
|
h2.section-title,
|
|
|
|
h3.section-title {
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 1.25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-module {
|
|
|
|
// width: 100%;
|
|
|
|
// max-width: 500px;
|
|
|
|
// min-width: 300px;
|
|
|
|
margin: 1em 0;
|
|
|
|
background-color: var(--container-bg-color);
|
|
|
|
padding: 2em;
|
|
|
|
border-radius: var(--container-border-radius);
|
|
|
|
}
|
|
|
|
|
|
|
|
.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
|
|
|
}
|