50 lines
790 B
CSS
50 lines
790 B
CSS
|
* {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
box-sizing: border-box;
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
html, body {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
[hidden],
|
||
|
.hidden {
|
||
|
display: none !important;
|
||
|
}
|
||
|
|
||
|
:root {
|
||
|
--font-regular: Verdana, Geneva, 'Dejavu Sans', Arial, Helvetica, sans-serif;
|
||
|
--font-monospace: Consolas, 'Liberation Mono', Menlo, Courier, monospace;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
background-color: #111;
|
||
|
color: #fff;
|
||
|
font-size: 16px;
|
||
|
line-height: 25px;
|
||
|
font-family: var(--font-regular);
|
||
|
overflow-y: scroll;
|
||
|
position: static;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
pre, code {
|
||
|
font-family: var(--font-monospace);
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: #1e90ff;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
a:visited {
|
||
|
color: #6B4F80;
|
||
|
}
|
||
|
a:hover,
|
||
|
a:focus {
|
||
|
text-decoration: underline;
|
||
|
}
|