-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (62 loc) · 1.2 KB
/
style.css
File metadata and controls
64 lines (62 loc) · 1.2 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
body {
background-color: #f0f0f2;
margin: 0;
padding: 0;
font-family: sans-serif;
}
#map {
position: absolute;
top: 0;
bottom: 0;
width: 100%;
cursor: crosshair;
}
#pp {
/* at bottom of screen centered 95% width */
position: absolute;
bottom: 2vh;
left: 50%;
transform: translateX(-50%);
width: 95%;
max-height: 20vh;
padding: 10px;
background-color: white;
border-radius: 10px;
z-index: 1100;
text-align: center;
font-size: 17px;
font-weight: bold;
opacity: 0.8;
display: flex;
justify-content: space-between;
align-items: center;
}
#center {
font-size: 17px;
}
#popup, #center {
/* dont touch other elements */
display: inline-block;
}
#popup {
display: none;
border: 3px solid red;
padding: 5px;
}
.button {
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 20px;
cursor: pointer;
}
.buttonred {
background-color: #f44336; /* Red */
}
.button:hover {
background-color: #3e8e41;
}