first commit

This commit is contained in:
Stefano Rossi 2025-07-10 00:44:37 +02:00
commit ee9158fae5
Signed by: chadmin
GPG key ID: 9EFA2130646BC893
23 changed files with 8156 additions and 0 deletions

25
styles/base.css Normal file
View file

@ -0,0 +1,25 @@
:root {
--primary-color: #800020;
--secondary-color: #B22222;
--accent-color: #A30000;
--text-color: #f0f2f5;
--background-dark: #0a0c14;
--highlight: #0066CC;
}
body {
font-family: 'Inter', sans-serif;
background-color: var(--background-dark);
color: var(--text-color);
}
.slidev-layout {
padding: 1.5rem;
background: var(--background-dark);
}
h1, h2 {
color: var(--highlight);
}