owncast/web/styles/globals.scss

53 lines
804 B
SCSS
Raw Normal View History

@import "~antd/dist/antd.dark";
2020-09-30 23:59:20 +02:00
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;
2020-09-30 23:59:20 +02:00
}
a {
color: inherit;
text-decoration: none;
color: rgba(90,103,216,1);
2020-09-30 23:59:20 +02:00
}
* {
box-sizing: border-box;
}
2021-01-18 04:51:38 +01:00
p {
font-weight: 300;
}
pre {
display: block;
padding: 1rem;
margin: .5rem 0;
2021-01-10 11:37:22 +01:00
background-color: rgb(44, 44, 44);
color:lightgrey;
}
2021-01-03 10:54:04 +01:00
code {
color: var(--owncast-purple);
}
2021-01-19 19:34:06 +01:00
.logo-svg {
height: 2rem;
width: 2rem;
}
.ant-btn {
transition-duration: .15s;
transition-delay: 0s;
}
p.page-description {
margin: 1em 0;
color: #ccc;
width: 80%;
}