initial commit

This commit is contained in:
2026-02-26 21:29:34 +01:00
commit d9d84634e8
72 changed files with 18491 additions and 0 deletions

View File

@@ -0,0 +1 @@
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Quicksand:wght@300;400;700&display=swap');

View File

@@ -0,0 +1,8 @@
*{
margin: 0;
}
html{
margin: 0;
padding: 0;
}

View File

@@ -0,0 +1,32 @@
h1, h2, h3, p, ul, li, label, button, input{
font-family: 'quicksand', Arial, Helvetica, sans-serif;
//color: blueviolet;
text-align: center;
}
h1{
color: blueviolet;
padding-top:1em;
font-weight: bold;
font-size: 2em;
}
h2{
color: blueviolet;
padding-block:1em;
font-size: 1.5em;
}
.base-input input {
border: 1px solid var(--input-border);
background: var(--input-bg);
color: var(--input-text);
}
label{
text-align: left;
}
input{
text-align:left;
}