53 lines
804 B
SCSS
53 lines
804 B
SCSS
@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: 16px;
|
|
|
|
background-color: #1f1f21;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
color: rgba(90,103,216,1);
|
|
}
|
|
|
|
* {
|
|
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;
|
|
}
|
|
.ant-btn {
|
|
transition-duration: .15s;
|
|
transition-delay: 0s;
|
|
}
|
|
|
|
p.page-description {
|
|
margin: 1em 0;
|
|
color: #ccc;
|
|
width: 80%;
|
|
}
|