-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
62 lines (50 loc) · 810 Bytes
/
styles.css
File metadata and controls
62 lines (50 loc) · 810 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
56
57
58
59
60
61
62
body {
background: #d0d0d0;
color: #1A1C29;
}
hr {
border-color: #1A1C29;
}
p {
margin-bottom: 0.5rem;
}
td {
border: 1px solid #1A1C29;
padding: 5px;
}
.footer-padding {
padding-top: 1rem;
}
.map-holder {
width: 100%;
display: inline-block;
}
/* COPY PASTA */
svg rect {
fill: #d0d0d0;
/* map background colour */
}
.country {
fill: rgb(141, 141, 141);
/* country colour */
stroke: #d0d0d0;
/* country border colour */
stroke-width: 1;
/* country border width */
}
.country-on {
fill: #4B5358;
/* highlight colour for selected country */
}
.countryLabel {
display: none;
/* hide all country labels by default */
}
.countryName {
fill: #000;
/* country label text colour */
}
.countryLabelBg {
fill: #d0d0d0;
/* country label background colour */
}