first commit

This commit is contained in:
Robin Olsen
2026-01-31 16:00:23 +01:00
commit a3a1d71325
23 changed files with 614 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
:root {
--primary-color: #4CAF50;
--secondary-color: #ff9800;
--font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
--font-size: 16px;
--background-color: #f5f5f5;
--text-color: #333333;
}
body {
font-family: var(--font-family);
font-size: var(--font-size);
background-color: var(--background-color);
color: var(--text-color);
margin: 0;
padding: 0;
}