owncast/web/styles/globals.scss

44 lines
814 B
SCSS

$owncast-purple: rgba(90,103,216,1);
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;
}
a {
color: inherit;
text-decoration: none;
color: rgba(90,103,216,1);
}
* {
box-sizing: border-box;
}
pre {
display: block;
padding: 1rem;
margin: .5rem 0;
background-color: #eee;
}
.owncast-layout .ant-menu-dark.ant-menu-dark:not(.ant-menu-horizontal) .ant-menu-item-selected {
background-color: $owncast-purple;
}
// misc system overrides
.ant-card {
border-radius: .5em;
}
.recharts-wrapper {
font-size: 12px;
}
@media (prefers-color-scheme: dark) {
@import "~antd/dist/antd.dark";
}