-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmy-requests.css
More file actions
89 lines (84 loc) · 2.32 KB
/
Copy pathmy-requests.css
File metadata and controls
89 lines (84 loc) · 2.32 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
.my-requests-main {
max-width: 800px;
margin: 0 auto;
padding: 2.5rem 1.5rem;
}
.my-requests-main h1 {
font-family: var(--font-display);
color: var(--forest);
font-size: 2rem;
}
.page-sub { color: var(--gray); margin-top: 0.4rem; margin-bottom: 2rem; }
.owned-request {
background: white;
border: 1px solid var(--border);
border-radius: 12px;
padding: 1.5rem;
margin-bottom: 1.5rem;
}
.owned-request-top { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 0.5rem; }
.owned-request h2 { font-family: var(--font-display); font-size: 1.25rem; color: var(--forest); }
.status-pill {
font-family: var(--font-mono);
font-size: 0.75rem;
padding: 0.2rem 0.6rem;
border-radius: 20px;
background: #E7F0E9;
color: var(--forest-light);
}
.status-pill.closed { background: var(--border); color: var(--gray); }
.volunteer-row {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 0.75rem;
padding: 0.9rem 0;
border-top: 1px solid var(--border);
}
.volunteer-info { font-weight: 500; }
.volunteer-info small { display: block; color: var(--gray); font-weight: 400; font-size: 0.8rem; }
.volunteer-actions { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
.btn-confirm {
background: var(--forest);
color: white;
border: none;
padding: 0.45rem 0.9rem;
border-radius: 6px;
font-size: 0.85rem;
font-weight: 600;
cursor: pointer;
}
.confirmed-tag { color: var(--forest-light); font-size: 0.85rem; font-weight: 600; }
.comment-box { display: flex; gap: 0.5rem; margin-top: 0.5rem; width: 100%; }
.comment-box input {
flex: 1;
padding: 0.4rem 0.6rem;
border: 1px solid var(--border);
border-radius: 6px;
font-size: 0.85rem;
font-family: var(--font-body);
}
.comment-box button {
background: var(--gold);
border: none;
padding: 0.4rem 0.8rem;
border-radius: 6px;
font-size: 0.8rem;
font-weight: 600;
cursor: pointer;
}
.no-volunteers { color: var(--gray); font-size: 0.9rem; padding: 0.9rem 0; }
.btn-close-request {
background: transparent;
border: 1px solid var(--border);
color: var(--gray);
padding: 0.4rem 0.8rem;
border-radius: 6px;
font-size: 0.8rem;
cursor: pointer;
}
@media (max-width: 500px) {
.my-requests-main { padding: 1.5rem 1rem; }
.owned-request { padding: 1.1rem; }
}