47 lines
No EOL
816 B
CSS
47 lines
No EOL
816 B
CSS
@import url("./fonts/style.css");
|
|
@import url("./elements.css");
|
|
|
|
:root {
|
|
--color-bg-scrim: #111;
|
|
--color-bg: #222;
|
|
--color-code: #000;
|
|
--color-code-text: #888;
|
|
--color-text: #ccc;
|
|
--color-accent: #bac;
|
|
|
|
font-size: 12px;
|
|
font-smooth: never;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
html {
|
|
height: 100%;
|
|
width: 100%;
|
|
background: var(--color-bg-scrim);
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0.1px 2ch;
|
|
min-height: 100%;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
max-width: 480px;
|
|
background: var(--color-bg);
|
|
color: var(--color-text);
|
|
font-family: var(--font-main);
|
|
}
|
|
|
|
.matkap_ascii {
|
|
display: inline-block;
|
|
position: fixed;
|
|
right: 0;
|
|
bottom: 0;
|
|
width: 80ch;
|
|
white-space: pre;
|
|
user-select: none;
|
|
pointer-events: none;
|
|
/* z-index: -1; */
|
|
opacity: 0.1;
|
|
line-height: 1;
|
|
} |