add new models and start making DB strucure

This commit is contained in:
2026-09-10 14:08:52 +02:00
parent e300915144
commit 16e22104fb
5 changed files with 116 additions and 0 deletions
+14
View File
@@ -11,6 +11,9 @@
:root {
--ui-primary: rgb(255, 0, 0);
--background-color: rgb(10,10,10);
--color-primary: rgb(250, 250, 250);
--color-a-primary: rgb(142, 234, 252);
--color-a-visited: rgb(252, 142, 250);
}
@font-face {
@@ -47,4 +50,15 @@ footer {
body {
background-color: var(--background-color);
font-family: Perpetua Regular;
color: var(--color-primary);
text-align: center;
}
a {
color: var(--color-a-primary);
text-decoration: underline;
}
a:visited {
color: var(--color-a-visited);
}