-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·55 lines (50 loc) · 821 Bytes
/
style.css
File metadata and controls
executable file
·55 lines (50 loc) · 821 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
49
50
51
52
53
54
55
svg
{
background : cover;
}
.divmap {
width : 100%;
margin : auto;
}
.sq {
fill: none;
stroke: black;
stroke-width: 1px;
}
.divmap path {
fill: #9e9e9e;
stroke : gold;
stroke-width: 1px;
transition : fill 0.3s;
}
.divmap path.done {
fill: green !important;
stroke : gold;
stroke-width: 1px;
transition : fill 0.3s;
}
.divmap path.active.done {
fill: #005600 !important;
}
.divmap path.active {
fill: #767676 !important;
}
body {
background-image: url('dot-grid.png');
padding-bottom: 120px;
position: relative;
}
.dom {
position: absolute;
bottom: 0px;
list-style: none;
padding-left: 0px;
}
.progress, .progress-bar {
border-radius: 0 !important;
height: 20px;
}
.footer {
position: absolute;
bottom: 0px;
}