-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
129 lines (114 loc) · 2.07 KB
/
style.css
File metadata and controls
129 lines (114 loc) · 2.07 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
:root {
--color-bg: #102029;
--color-surface: #142d3a;
--color-accent: #F3DE8A;
--color-text: #e8e8e8;
--color-muted: #9aa5ab;
--color-link: #F3DE8A;
--font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
--max-width: 640px;
}
*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
font-size: 16px;
-webkit-text-size-adjust: 100%;
}
body {
background: var(--color-bg);
color: var(--color-text);
font-family: var(--font);
line-height: 1.6;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 2rem 1.5rem;
}
main {
width: 100%;
max-width: var(--max-width);
}
/* Avatar */
.avatar {
width: 96px;
height: 96px;
border-radius: 50%;
object-fit: cover;
border: 3px solid var(--color-accent);
display: block;
margin-bottom: 1.5rem;
}
/* Name & title */
h1 {
font-size: 2rem;
font-weight: 700;
letter-spacing: -0.02em;
color: #fff;
line-height: 1.2;
}
.title {
font-size: 1rem;
color: var(--color-accent);
margin-top: 0.25rem;
font-weight: 500;
}
.location {
font-size: 0.875rem;
color: var(--color-muted);
margin-top: 0.25rem;
}
/* Bio */
.bio {
margin-top: 1.25rem;
font-size: 1rem;
color: var(--color-muted);
max-width: 480px;
}
/* Divider */
.divider {
width: 2rem;
height: 2px;
background: var(--color-accent);
margin: 2rem 0;
border: none;
}
/* Social links */
.social {
display: flex;
flex-wrap: wrap;
gap: 0.75rem;
list-style: none;
}
.social a {
display: inline-flex;
align-items: center;
gap: 0.4rem;
color: var(--color-muted);
text-decoration: none;
font-size: 0.9rem;
padding: 0.4rem 0.75rem;
border: 1px solid #1e3a4a;
border-radius: 6px;
transition: color 0.15s, border-color 0.15s;
}
.social a:hover {
color: var(--color-accent);
border-color: var(--color-accent);
}
.social a svg {
width: 16px;
height: 16px;
fill: currentColor;
flex-shrink: 0;
}
/* Footer */
footer {
margin-top: 3rem;
font-size: 0.8rem;
color: #3a5568;
}