-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
100 lines (86 loc) · 1.38 KB
/
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
html {
background:#efefef;
font-family: 'Raleway', sans-serif;
font-size:10px;
}
body {
width:1000px;
margin:0 auto;
}
#map {
margin:0 auto;
width:940px;
height:508px;
padding:30px;
border-radius:12px;
}
.infographic {
background:url('bg.png');
}
.infobox__title {
font-size:1.8rem;
}
.infobox {
font-family:helvetica;
color:#ffffff;
width: 300px;
height: auto;
padding-top: 10px;
padding-right: 10px;
padding-bottom: 10px;
padding-left: 10px;
position: absolute;
top: -9999px;
left: -9999px;
background-color:#084862;
border-radius:6px;
}
.infobox__close {
font-family:helvetica;
font-size: 10px;
color: red;
position: absolute;
top: 4px;
right: 8px;
text-decoration: none;
}
.description {
font-size:12px;
display:block;
margin-top:5px;
line-height:18px;
}
.infobox:after, .infobox:before {
left: 100%;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
}
.infobox:before {
border-color: rgba(255, 255, 255, 0);
border-left-color: #084862;
border-width: 13px;
top: 30%;
margin-top: -13px;
}
h1 {
font-size:3rem;
text-align:center;
color:#b20339;
font-weight:100;
}
p {
font-size:1.8rem;
text-align:center;
font-weight:400;
line-height:3rem;
margin-top:2rem;
}
a {
text-decoration:none;
border-bottom:1px dashed orange;
color:orange;
}