abtmtr-v13/assets/style.css
2024-08-31 15:11:34 -05:00

59 lines
No EOL
1.1 KiB
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;
}
.entity_box {
margin: 3rem 1ch;
padding-inline: 1ch;
padding-block: 0.1px;
/* border: 1ch 1rem solid var(--color-accent); */
border-image: url("/assets/accents/9s_chr.png");
border-image-slice: 12 6;
border-image-width: 1rem 1ch;
border-image-repeat: stretch;
border-image-outset: 1.25rem 1ch;
}