File size: 978 Bytes
b8d618b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
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');