-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (48 loc) · 1.16 KB
/
style.css
File metadata and controls
56 lines (48 loc) · 1.16 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
:root {
--navy: #1e3a8a;
--accent: #3b82f6;
--bg: #f8fafc;
--text: #1e293b;
}
body {
font-family: 'Segoe UI', system-ui, sans-serif;
background-color: var(--bg);
color: var(--text);
line-height: 1.6;
max-width: 850px;
margin: 0 auto;
padding: 2rem;
}
header {
text-align: center;
border-bottom: 3px solid var(--navy);
padding-bottom: 2rem;
margin-bottom: 3rem;
}
h1 { color: var(--navy); font-size: 2.5rem; margin-bottom: 0.5rem; }
h2 { color: var(--navy); border-left: 5px solid var(--accent); padding-left: 1rem; margin-top: 2.5rem; }
.contact-bar a { color: var(--accent); text-decoration: none; font-weight: 600; }
.skills-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1.5rem;
}
.skill-category {
background: white;
padding: 1rem;
border-radius: 8px;
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}
.project-card, .exp-item {
background: white;
padding: 1.5rem;
margin: 1rem 0;
border-radius: 8px;
border: 1px solid #e2e8f0;
}
footer {
text-align: center;
margin-top: 4rem;
color: #64748b;
font-size: 0.9rem;
}