Initial commit

This commit is contained in:
2025-10-23 22:15:21 +02:00
commit 55f963d98b
12 changed files with 279 additions and 0 deletions

44
html/styles/style.css Normal file
View File

@@ -0,0 +1,44 @@
:root {
}
::-webkit-scrollbar {
display: none;
}
* {
font-family: 'Fira Code', 'PT sans', sans-serif;
box-sizing: border-box;
}
html, body {
height: 100vh;
width: 100vw;
}
html, body, main, section, section div, footer {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
main {
justify-content: start;
width: 95%;
height: 95%;
overflow: auto;
scroll-snap-type: y mandatory;
margin : 5px;
}
section {
height: 100%;
min-height: 100%;
width: 100%;
scroll-snap-align: start;
}