added bootstar, font awsome, and the project is in a useable state, bit needs some manual setup.

This commit is contained in:
2026-06-13 23:11:54 +02:00
parent 4cf12c378e
commit 9045841645
5886 changed files with 538083 additions and 99 deletions

View File

@@ -0,0 +1,49 @@
* {
box-sizing: border-box;
}
html {
min-height: 100%;
background-color: var(--bs-body-bg);
color: var(--bs-body-color);
}
body {
min-height: 100vh;
margin: 0;
background-color: var(--bs-body-bg);
color: var(--bs-body-color);
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a {
color: inherit;
text-decoration: none;
}
button,
input {
font: inherit;
}
main {
min-height: 100vh;
background-color: var(--bs-body-bg);
}
.user-avatar {
display: inline-grid;
width: 22px;
height: 22px;
min-width: 22px;
place-items: center;
border: 1px solid var(--bs-border-color);
border-radius: 999px;
object-fit: cover;
}
.user-avatar-fallback {
background: var(--bs-secondary-bg);
color: var(--bs-secondary-color);
font-size: 12px;
}