-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
106 lines (88 loc) · 1.4 KB
/
styles.css
File metadata and controls
106 lines (88 loc) · 1.4 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
100
101
102
103
104
105
106
:root {
--bg: #0f172a;
--text: #e5e7eb;
--muted: #94a3b8;
--accent: #38bdf8;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: system-ui, -apple-system, BlinkMacSystemFont;
background: var(--bg);
color: var(--text);
line-height: 1.6;
}
.top-bar {
display: flex;
justify-content: flex-end;
padding: 1rem 2rem;
}
button {
background: transparent;
border: 1px solid var(--muted);
color: var(--text);
padding: 0.4rem 0.8rem;
cursor: pointer;
border-radius: 6px;
}
button:hover {
border-color: var(--accent);
color: var(--accent);
}
.container {
max-width: 900px;
margin: auto;
padding: 2rem;
}
h1 {
font-size: 2.5rem;
margin-bottom: 0;
}
h2 {
font-weight: 400;
color: var(--accent);
}
.subtitle {
color: var(--muted);
margin-top: 0.5rem;
}
section {
margin-top: 3rem;
}
h3 {
margin-bottom: 1rem;
color: var(--accent);
}
ul {
list-style: none;
padding-left: 0;
}
ul li::before {
content: "•";
color: var(--accent);
margin-right: 0.5rem;
}
.skills {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 1.5rem;
}
footer {
margin-top: 4rem;
border-top: 1px solid #1e293b;
padding-top: 2rem;
}
.links a {
margin-right: 1rem;
color: var(--accent);
text-decoration: none;
}
.links a:hover {
text-decoration: underline;
}
.mindset li {
margin-bottom: 0.8rem;
color: var(--text);
}