First Version

This commit is contained in:
2026-04-17 00:26:03 +01:00
parent aecd1a5574
commit c826ed6502
37 changed files with 4862 additions and 19 deletions

57
css/base.css Normal file
View File

@@ -0,0 +1,57 @@
/*
* Base Styles - Reset and foundational styles
*/
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
background-color: var(--bg);
color: var(--text);
line-height: 1.6;
overflow-x: hidden;
transition: background-color 0.3s ease, color 0.3s ease;
}
.container {
max-width: 1100px;
margin: 0 auto;
padding: 0 2rem;
}
a {
color: var(--accent);
text-decoration: none;
}
a:hover {
text-decoration: underline;
color: var(--accent-light);
}
.skip-link {
position: absolute;
left: 1rem;
top: -3rem;
z-index: 2000;
background: var(--accent);
color: #fff;
text-decoration: none;
font-weight: 700;
padding: 0.75rem 1rem;
border-radius: 10px;
box-shadow: 0 8px 24px var(--accent-glow);
transition: top 0.2s ease;
}
.skip-link:focus {
top: 1rem;
}