-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
48 lines (40 loc) · 695 Bytes
/
Copy pathindex.css
File metadata and controls
48 lines (40 loc) · 695 Bytes
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
* {
box-sizing: border-box;
}
body {
text-align: center;
}
#map {
height: 600px;
width: 700px;
display: inline-block;
}
#canvas > canvas {
border: 1px solid black
}
#options {
text-align: left;
display: inline-block
}
#options > div {
background-color: rgb(221, 221, 221);
padding: 10px;
margin: 10px;
}
#options input {
margin: 5px;
}
#buttons {
text-align: center;
}
progress {
width: calc(100% - 20px);
height: 1em;
border-radius: 0.1em;
margin: 0 10px 10px;
}
progress::-webkit-progress-bar {
background-color: rgb(221, 221, 221);
border-radius: 2px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
}