-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
63 lines (62 loc) · 857 Bytes
/
style.css
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
body {
margin: 0;
padding: 0;
}
html,
body,
.wrapper {
height: 100%;
}
.wrapper {
display: flex;
flex-direction: column;
}
#map {
height: 100%;
}
calcite-stepper {
padding: 10px;
box-sizing: border-box;
}
.drawPolygonWrapper {
position: relative;
top: -27px;
}
.mapWrapper {
flex: 1;
flex-grow: 1;
position: relative;
}
#codeBlock {
background-color: white;
width: 400px;
right: 20px;
top: 20px;
z-index: 400;
position: absolute;
padding: 0 10px 10px;
}
#codeBlock .linkWrapper {
text-align: right;
}
#mainSelect {
display: none;
}
@media (max-width: 1200px) {
calcite-stepper {
display: none;
}
#mainSelect {
display: block;
}
#codeBlock {
bottom: 0px;
right: 0px;
left: 0px;
height: 143px;
overflow-y: auto;
top: auto;
width: auto;
padding-bottom: 20px;
}
}