-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.css
More file actions
85 lines (77 loc) · 2.58 KB
/
Copy pathdashboard.css
File metadata and controls
85 lines (77 loc) · 2.58 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
.user-tag { font-weight: 600; color: var(--forest); }
.points-tag { font-family: var(--font-mono); font-size: 0.85rem; color: var(--gold); background: #FBF3E0; padding: 0.25rem 0.6rem; border-radius: 20px; }
.dash-layout {
display: flex;
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
padding: 2rem 1.5rem;
align-items: flex-start;
flex-wrap: wrap;
}
.dash-form-panel {
flex: 1 1 320px;
background: white;
border: 1px solid var(--border);
border-radius: 12px;
padding: 1.75rem;
position: sticky;
top: 1.5rem;
}
.dash-form-panel h2 { font-family: var(--font-display); color: var(--forest); font-size: 1.4rem; }
.panel-sub { color: var(--gray); font-size: 0.9rem; margin-top: 0.3rem; margin-bottom: 1rem; }
#postRequestForm label {
display: block;
font-size: 0.85rem;
font-weight: 500;
margin-top: 0.9rem;
}
#postRequestForm input,
#postRequestForm textarea {
width: 100%;
padding: 0.6rem 0.75rem;
margin-top: 0.3rem;
border: 1px solid var(--border);
border-radius: 6px;
font-family: var(--font-body);
font-size: 0.95rem;
}
.location-status { font-size: 0.85rem; color: var(--forest-light); margin-top: 0.5rem; min-height: 1.1rem; }
.full { width: 100%; margin-top: 0.75rem; }
.dash-browse-panel { flex: 2 1 480px; }
.dash-browse-panel h2 { font-family: var(--font-display); color: var(--forest); font-size: 1.4rem; margin-bottom: 0.75rem; }
#map {
height: 320px;
border-radius: 12px;
border: 1px solid var(--border);
margin-bottom: 1.5rem;
}
.requests-list { display: flex; flex-direction: column; gap: 1rem; }
.req-item {
background: white;
border: 1px solid var(--border);
border-radius: 10px;
padding: 1.25rem;
}
.req-item-top { display: flex; justify-content: space-between; align-items: baseline; }
.req-item h3 { font-family: var(--font-display); color: var(--forest); font-size: 1.15rem; }
.req-points { font-family: var(--font-mono); color: var(--gold); font-size: 0.85rem; font-weight: 600; }
.req-item p { color: var(--gray); font-size: 0.92rem; margin-top: 0.3rem; }
.req-item-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 0.9rem; }
.req-meta { font-size: 0.8rem; color: var(--gray); }
.btn-join {
background: var(--gold);
color: var(--charcoal);
border: none;
padding: 0.5rem 1rem;
border-radius: 6px;
font-weight: 600;
cursor: pointer;
font-size: 0.85rem;
}
.btn-join:disabled { background: var(--border); color: var(--gray); cursor: not-allowed; }
@media (max-width: 860px) {
.dash-form-panel { position: static; }
#map { height: 220px; }
.dash-layout { padding: 1.25rem 1rem; gap: 1.25rem; }
}