-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
99 lines (84 loc) · 1.26 KB
/
Copy pathstyle.css
File metadata and controls
99 lines (84 loc) · 1.26 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/* Base Styles */
body {
font-family: sans-serif;
margin: 0;
padding: 0;
background: #f4f4f4;
color: #333;
}
header {
background: #111827;
color: white;
padding: 2rem;
text-align: center;
}
h1 {
margin: 0;
font-size: 2.5rem;
}
.subtitle {
font-size: 1.25rem;
color: #d1d5db;
}
main {
max-width: 800px;
margin: 2rem auto;
padding: 0 1rem;
}
section {
margin-bottom: 2rem;
}
footer {
background: #1f2937;
color: #d1d5db;
text-align: center;
padding: 1rem;
font-size: 0.9rem;
}
a {
color: #3b82f6;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Skills Grid */
.skills-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
gap: 1rem;
justify-items: center;
align-items: center;
padding: 1rem 0;
}
.skills-grid img {
width: 64px;
height: 64px;
object-fit: contain;
filter: grayscale(0.3);
transition: filter 0.3s ease;
}
.skills-grid img:hover {
filter: grayscale(0);
}
/* Privacy */
.content {
max-width: 700px;
margin: 0 auto;
padding: 2rem;
}
.content p {
margin-bottom: 1rem;
}
/* Responsive Typography */
@media (max-width: 600px) {
h1 {
font-size: 2rem;
}
.subtitle {
font-size: 1rem;
}
main {
padding: 0 0.5rem;
}
}