INIT: initial commit

Added some initial files, components, functionality
This commit is contained in:
Fiona Lena Urban 2025-02-10 21:19:58 +01:00
commit 72aaf5174d
19 changed files with 9962 additions and 0 deletions

View file

@ -0,0 +1,27 @@
:root {
--padding-default: 1rem;
--radius-default: 5px;
--transition-default: 150ms;
--color-white: white;
--color-red: #cc0001;
--color-blue-dark: #341f97;
--color-blue: #2e86de;
--color-grey: #c7c7c7;
--color-main: var(--color-blue);
--box-shadow-z2: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body {
height: 100%;
overflow-x: hidden;
}