-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
64 lines (49 loc) · 786 Bytes
/
index.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
64
#GetMapUrl{
width:90%;
height: 100px;
resize: none;
}
#GetMapImage{
max-width:95%;
border:unset;
display:none;
}
#error{
color:red;
}
input, textarea, #error {
display: block;
margin: 0.3em;
}
input, textarea{
padding:.5em;
}
#container>div{
margin: 0.3em;
}
body {
font-family: Sans-Serif;
}
#ImageLoader {
border: 8px solid #f3f3f3; /* Light grey */
border-top: 8px solid #3498db; /* Blue */
border-radius: 50%;
width: 16px;
height: 16px;
animation: spin 2s linear infinite;
display: none;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.row {
display: flex;
}
.column {
flex: 50%;
}
#map {
height: 97vh;
width:100%;
}