Initial commit: 11ty website with Fire/Frost branding

This commit is contained in:
The Trinity
2026-04-02 18:39:00 -05:00
commit 40b45dff2e
1646 changed files with 329080 additions and 0 deletions

31
src/css/firefrost.css Normal file
View File

@@ -0,0 +1,31 @@
/* Firefrost Gaming CSS - Fire/Frost/Arcane Branding */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
background: #0a0a1a;
color: #e8e8e8;
line-height: 1.6;
}
/* Responsive footer grid */
@media (max-width: 768px) {
footer .ffg-footer > div:first-child {
grid-template-columns: 1fr !important;
gap: 40px !important;
}
}
/* Link hover effects */
a {
transition: color 0.3s ease;
}
a:hover {
color: #4ecdc4 !important;
}