You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
1.5 KiB
94 lines
1.5 KiB
// @import "~antd/dist/antd.dark"; |
|
|
|
html, |
|
body { |
|
padding: 0; |
|
margin: 0; |
|
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"; |
|
|
|
font-size: 14px; |
|
|
|
background-color: #000; |
|
color: var(--default-text-color);; |
|
} |
|
|
|
a { |
|
color: inherit; |
|
text-decoration: none; |
|
color: var(--owncast-purple); |
|
|
|
&:hover { |
|
color: var(--default-text-color); |
|
} |
|
} |
|
|
|
* { |
|
box-sizing: border-box; |
|
} |
|
p { |
|
font-weight: 300; |
|
} |
|
pre { |
|
display: block; |
|
padding: 1rem; |
|
margin: .5rem 0; |
|
background-color: rgb(44, 44, 44); |
|
color:lightgrey; |
|
} |
|
|
|
code { |
|
color: var(--owncast-purple); |
|
} |
|
|
|
|
|
.logo-svg { |
|
height: 2rem; |
|
width: 2rem; |
|
} |
|
|
|
p.description { |
|
margin: 1em 0; |
|
color: #ccc; |
|
} |
|
|
|
|
|
.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%; |
|
} |
|
} |
|
}
|
|
|