Really basic functionality

This commit is contained in:
2025-07-29 16:45:17 +07:00
commit 43e29b1cae
38 changed files with 3441 additions and 0 deletions
+88
View File
@@ -0,0 +1,88 @@
:root {
font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
--system-accent-color: accentcolor;
line-height: 1.5;
font-weight: 400;
color-scheme: light dark;
background-color: var(--k-background-color);
user-select: none;
-webkit-user-select: none;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
body {
margin: 0;
height: 100vh;
overflow: hidden;
}
#root,
main {
height: 100%;
}
.grid {
display: grid;
}
.row {
display: flex;
}
.flex-col {
flex-direction: column;
}
.justify-content-center {
justify-content: center;
}
.align-items-center {
align-items: center;
}
.col {
flex: 1;
}
.gap2 {
gap: var(--k-medium-spacing);
}
h2 {
margin: 0 0 0.25em 0;
}
h2 {
margin: 0 0 0.25em 0;
}
.h-full {
height: 100%;
}
.icon-button {
display: flex;
justify-content: center;
align-items: center;
img {
width: 16px;
height: 16px;
}
&:disabled img {
filter: invert(50%);
}
}
.checkbox-container {
display: flex;
gap: var(--k-medium-spacing);
align-items: center;
}