init commit

This commit is contained in:
2026-03-19 10:04:00 -04:00
commit d72e0f043b
10 changed files with 727 additions and 0 deletions

65
static/css/style.css Normal file
View File

@@ -0,0 +1,65 @@
:root {
font-family: 'Departure Mono', monospace;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color-scheme: light dark;
--white: #f2f2f2;
--black: #1a1a1a;
}
/* Fonts */
@font-face {
font-family: "Departure Mono";
src: url("../assets/fonts/DepartureMono-1.500/DepartureMono-Regular.woff2") format("woff2");
font-weight: normal;
font-style: normal;
font-display: swap;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Departure Mono', monospace; }
h1 { font-size: clamp(1.8rem, 4vw, 4rem); }
h2 { font-size: clamp(1.4rem, 3vw, 3rem); }
h3 { font-size: clamp(1.1rem, 2vw, 2rem); }
h4 { font-size: clamp(1rem, 1.8vw, 1.6rem); }
h5 { font-size: clamp(0.95rem, 1.5vw, 1.4rem); }
h6 { font-size: clamp(0.9rem, 1.2vw, 1.2rem); }
p { font-size: clamp(1rem, 1.5vw, 1.25rem); }
li { font-size: clamp(1rem, 1.5vw, 1.25rem); }
a { font-size: inherit; }
label { font-size: clamp(0.85rem, 1.1vw, 1rem); }
input,
textarea,
select { font-size: clamp(0.9rem, 1.1vw, 1rem); }
blockquote { font-size: clamp(1rem, 1.5vw, 1.3rem); }
caption { font-size: clamp(0.8rem, 1vw, 0.95rem); }
figcaption { font-size: clamp(0.8rem, 1vw, 0.9rem); }
code,
pre { font-size: clamp(0.8rem, 1vw, 0.95rem); }
small { font-size: clamp(0.75rem, 0.9vw, 0.85rem); }
strong { font-size: inherit; }
em { font-size: inherit; }
span { font-size: inherit; }
th { font-size: clamp(0.9rem, 1.1vw, 1rem); }
td { font-size: clamp(0.85rem, 1.1vw, 1rem); }
button { font-size: clamp(0.9rem, 1.1vw, 1rem); }
body {
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
@keyframes ellipsis {
0% { content: ''; }
25% { content: '.'; }
50% { content: '..'; }
75% { content: '...'; }
100% { content: ''; }
}
h2 .ellipsis::after {
content: '';
animation: ellipsis 3.5s steps(1, end) infinite;
}