-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
56 lines (56 loc) · 803 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
* {
margin: 0;
padding: 0;
box-sizing:
border-box;
}
body {
font: 13px Helvetica, Arial;
background: #333;
color: #ddd;
}
#visits {
margin: 0;
padding: 0;
width: 30%;
position: absolute;
top: 0;
right: 0;
}
#visits thead th {
background: #666;
}
#visits tbody td {
padding: 5px 10px;
overflow: hidden;
background: #333;
}
#visits tbody tr:nth-child(odd) td {
background: #444;
}
#map {
width: 70%;
position: absolute; top: 0; left: 0;
}
.countries {
fill: #999;
stroke: #666;
stroke-width: 0.5px;
stroke-linecap: round;
stroke-linejoin: round;
vector-effect: non-scaling-stroke;
}
.route {
fill: none;
stroke: #ccc;
stroke-width: 0.5px;
}
.route-404 {
stroke: #A60000;
}
.route-200 {
stroke: #00A600;
}
.route-301, .route-302 {
stroke: #0066A6;
}