38 lines
501 B
CSS
38 lines
501 B
CSS
@font-face {
|
|
font-family: 'JetBrains Mono';
|
|
src: url('/font/jetbrains-mono/Regular.woff2') format('woff');
|
|
}
|
|
|
|
body {
|
|
background: #292D3E;
|
|
|
|
font-family: 'JetBrains Mono', monospace;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
pre {
|
|
margin: 0;
|
|
}
|
|
|
|
body > pre > span {
|
|
cursor: default;
|
|
}
|
|
|
|
a {
|
|
color: white;
|
|
}
|
|
|
|
body {
|
|
color: white;
|
|
}
|
|
|
|
#inspector {
|
|
position: fixed;
|
|
pointer-events: none;
|
|
|
|
background: inherit;
|
|
color: white;
|
|
border: 1px #424864 solid;
|
|
|
|
padding: .5vw;
|
|
}
|