abtmtr-v13/assets/style.css

47 lines
816 B
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-21 06:05:24 +00:00
}