20 lines
215 B
CSS
20 lines
215 B
CSS
|
|
:root {
|
|
--base_font_size: 62.5%;
|
|
}
|
|
html {
|
|
font-size: var(--base_font_size);
|
|
}
|
|
body, main {
|
|
overflow-x: hidden;
|
|
margin: auto;
|
|
width: fit-content;
|
|
}
|
|
script, style {
|
|
display: none;
|
|
}
|
|
pre {
|
|
margin: 10px 0px;
|
|
}
|
|
|