2025-11-19 14:31:17 +00:00
|
|
|
/* ============================================================================
|
|
|
|
|
CSS RESET - Normalize & Base Styles
|
|
|
|
|
============================================================================ */
|
|
|
|
|
|
|
|
|
|
/* Box sizing reset */
|
|
|
|
|
* {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Body base */
|
|
|
|
|
body {
|
|
|
|
|
background-color: var(--page-bg);
|
2025-11-20 13:10:11 +00:00
|
|
|
|
|
|
|
|
/* OLD PATTERN - Keep for reference (can be restored anytime) */
|
|
|
|
|
/* background-image:
|
2025-11-19 14:31:17 +00:00
|
|
|
linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
|
|
|
|
|
linear-gradient(180deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
|
|
|
|
|
linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px),
|
|
|
|
|
linear-gradient(180deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
|
2025-11-20 13:10:11 +00:00
|
|
|
background-size: 50px 50px, 50px 50px, 10px 10px, 10px 10px; */
|
|
|
|
|
|
|
|
|
|
/* NEW TEST PATTERNS - Theme-specific (woven fabric for light, diagonal grid for dark) */
|
|
|
|
|
background-image: var(--page-bg-pattern);
|
|
|
|
|
background-size: 40px 40px; /* For dark theme diagonal grid */
|
2025-11-19 14:31:17 +00:00
|
|
|
background-attachment: fixed;
|
|
|
|
|
overflow-x: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Smooth scrolling */
|
|
|
|
|
html {
|
|
|
|
|
scroll-behavior: smooth;
|
|
|
|
|
scroll-padding-top: 70px; /* Account for fixed header */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Ensure Iconify icons display properly */
|
|
|
|
|
.iconify,
|
|
|
|
|
iconify-icon {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|