Spaces:
Sleeping
Sleeping
| /* | |
| Portfolio CSS - Modular Structure | |
| ================================ | |
| Main CSS file that imports all component modules | |
| File Structure: | |
| - _base.css: CSS variables, reset styles, common animations | |
| - _navigation.css: Navigation bar and menu styles | |
| - _hero.css: Hero section with glitch effect and typing animation | |
| - _about.css: About section with profile image and stats | |
| - _skills.css: Skills section with progress bars | |
| - _experience-projects.css: Timeline and project cards | |
| - _contact-footer.css: Contact section and footer | |
| - _responsive.css: Mobile and tablet responsive styles | |
| */ | |
| /* Import Base Styles & Variables */ | |
| @import url('./css/_base.css'); | |
| /* Import Component Modules */ | |
| @import url('./css/_navigation.css'); | |
| @import url('./css/_hero.css'); | |
| @import url('./css/_about.css'); | |
| @import url('./css/_skills.css'); | |
| @import url('./css/_experience-projects.css'); | |
| @import url('./css/_contact-footer.css'); | |
| /* Import Responsive Styles */ | |
| @import url('./css/_responsive.css'); |