-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.css
More file actions
57 lines (55 loc) · 1.36 KB
/
Copy pathprofile.css
File metadata and controls
57 lines (55 loc) · 1.36 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
.profile-main {
max-width: 680px;
margin: 0 auto;
padding: 3rem 1.5rem;
}
.profile-header {
background: white;
border: 1px solid var(--border);
border-radius: 14px;
padding: 2rem;
text-align: center;
margin-bottom: 2rem;
}
.profile-header h1 {
font-family: var(--font-display);
font-size: 2rem;
color: var(--forest);
}
.profile-locality { color: var(--gray); margin-top: 0.25rem; }
.profile-stats {
display: flex;
justify-content: center;
gap: 2.5rem;
margin-top: 1.5rem;
}
.stat-value {
font-family: var(--font-mono);
font-size: 1.8rem;
font-weight: 600;
color: var(--gold);
}
.stat-label { font-size: 0.8rem; color: var(--gray); margin-top: 0.2rem; }
.profile-section h2 {
font-family: var(--font-display);
font-size: 1.3rem;
color: var(--forest);
margin-bottom: 1rem;
}
.comment-card {
background: white;
border: 1px solid var(--border);
border-radius: 10px;
padding: 1.1rem 1.3rem;
margin-bottom: 0.9rem;
}
.comment-card p { color: var(--charcoal); }
.comment-meta { font-size: 0.8rem; color: var(--gray); margin-top: 0.5rem; }
.no-comments { color: var(--gray); font-size: 0.9rem; }
@media (max-width: 500px) {
.profile-main { padding: 1.5rem 1rem; }
.profile-header { padding: 1.5rem 1rem; }
.profile-stats { gap: 1.25rem; flex-wrap: wrap; }
.stat-value { font-size: 1.4rem; }
.stat-label { font-size: 0.7rem; }
}