abtmtr-v13/assets/style.css

31 lines
545 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;
--color-text: #ccc;
--color-accent: #aca;
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-30 03:40:00 +00:00
padding: 0.1px 1rem;
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-21 06:05:24 +00:00
}