-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
116 lines (98 loc) · 1.63 KB
/
Copy pathstyles.css
File metadata and controls
116 lines (98 loc) · 1.63 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
:root {
color-scheme: light;
font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
background: #f4f7fb;
color: #1c2530;
}
.app-shell {
min-height: 100vh;
display: grid;
grid-template-columns: minmax(260px, 340px) 1fr;
}
.left-panel {
background: #fff;
border-right: 1px solid #d7dfeb;
padding: 1.25rem;
}
.left-panel h1 {
margin: 0;
font-size: 1.25rem;
}
.panel-copy {
margin: 0.6rem 0 1rem;
color: #526170;
font-size: 0.95rem;
}
.search-form {
display: flex;
flex-direction: column;
gap: 0.6rem;
}
.search-form input {
width: 100%;
border: 1px solid #c3cfdd;
border-radius: 8px;
padding: 0.65rem 0.75rem;
font-size: 1rem;
}
.search-form button {
border: 0;
border-radius: 8px;
background: #1266d6;
color: #fff;
padding: 0.65rem 1rem;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
}
.search-form button:hover {
background: #0f57b5;
}
.hint-text {
margin: 0.2rem 0 0;
color: #6b7787;
font-size: 0.86rem;
}
#status {
margin: 0.9rem 0 0;
color: #526170;
}
main {
padding: 1rem;
}
#map {
width: 100%;
height: calc(100vh - 2rem);
min-height: 420px;
border-radius: 12px;
border: 1px solid #d7dfeb;
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
}
@media (max-width: 900px) {
.app-shell {
grid-template-columns: 1fr;
grid-template-rows: auto 1fr;
}
.left-panel {
border-right: 0;
border-bottom: 1px solid #d7dfeb;
}
#map {
height: calc(100vh - 260px);
}
}