69 lines
891 B
CSS
69 lines
891 B
CSS
:root {
|
|
--max-width: 1120px;
|
|
--border-radius: 8px;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
:root {
|
|
--background-start-rgb: 0, 0, 0;
|
|
--background-end-rgb: 0, 0, 0;
|
|
}
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
max-width: 100vw;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
html {
|
|
color-scheme: dark;
|
|
}
|
|
}
|
|
|
|
.MuiCardActionArea-focusHighlight {
|
|
background: transparent;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background-color: transparent;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
right: 0;
|
|
width: 8px;
|
|
height: 8px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: #aaa;
|
|
border-radius: 8px;
|
|
width: 8px;
|
|
height: 8px;
|
|
}
|
|
|
|
.reactMarkDownLink a {
|
|
color: #000000;
|
|
display: inline;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.reactMarkDownList ul {
|
|
margin-left: 20px;
|
|
}
|
|
|
|
.reactMarkDownList ol {
|
|
margin-left: 20px;
|
|
}
|