first commit

This commit is contained in:
Christian Lawson-Perfect 2025-04-14 11:58:47 +00:00
commit 45faac5b14
4 changed files with 603 additions and 0 deletions

40
style.css Normal file
View file

@ -0,0 +1,40 @@
@import 'https://fonts.googleapis.com/css2?family=Noto+Sans+Symbols+2&family=Noto+Sans+Symbols:wght@100..900&display=swap';
:root {
--spacing: 1em;
color-scheme: light dark;
}
body {
font-family: sans-serif, 'Noto Sans Symbols', 'Noto Sans Symbols 2';
background: Canvas;
}
dl {
display: grid;
grid-template-columns: repeat(auto-fit, 7em 10em);
align-items: center;
justify-content: center;
gap: 1em 0.5em;
}
dt, label {
text-align: end;
font-weight: bold;
}
dd {
margin: 0;
word-break: break-all;
}
footer {
margin-top: 20svh;
}
#decimal-container {
position: sticky;
top: 0;
background: Canvas;
text-align: center;
padding: var(--spacing);
}