abtmtr-v13/assets/style.css

59 lines
1.1 KiB
CSS
Raw Normal View History

2024-08-20 19:30:37 +00:00
@import url("./fonts/style.css");
2024-08-30 03:40:00 +00:00
@import url("./elements.css");
2024-08-20 19:30:37 +00:00
:root {
2024-08-30 03:40:00 +00:00
--color-bg-scrim: #111;
--color-bg: #222;
2024-08-30 05:04:14 +00:00
--color-code: #000;
--color-code-text: #888;
2024-08-30 03:40:00 +00:00
--color-text: #ccc;
2024-08-30 05:04:14 +00:00
--color-accent: #bac;
2024-08-20 19:30:37 +00:00
2024-08-30 03:40:00 +00:00
font-size: 12px;
font-smooth: never;
-webkit-font-smoothing: antialiased;
2024-08-21 06:05:24 +00:00
}
2024-08-20 19:30:37 +00:00
html {
height: 100%;
width: 100%;
2024-08-30 03:40:00 +00:00
background: var(--color-bg-scrim);
2024-08-20 19:30:37 +00:00
}
body {
margin: 0;
2024-08-31 07:08:51 +00:00
padding: 0.1px 2ch;
2024-08-20 19:30:37 +00:00
min-height: 100%;
2024-08-21 06:05:24 +00:00
box-sizing: border-box;
2024-08-28 15:16:53 +00:00
width: 100%;
2024-08-30 03:40:00 +00:00
max-width: 480px;
background: var(--color-bg);
color: var(--color-text);
font-family: var(--font-main);
2024-08-31 07:08:51 +00:00
}
.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;
2024-08-31 20:11:34 +00:00
}
.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;
2024-08-21 06:05:24 +00:00
}