-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent.css
66 lines (63 loc) · 1.39 KB
/
content.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
/* shamelessly stolen from https://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_popup :) */
.parkstats_popup {
position: relative;
display: inline-block;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.parkstats_popup .parkstats_popup_content {
visibility: hidden;
width: 160px;
background-color: #272727;
text-align: center;
border-radius: 6px;
padding: 8px 0;
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
margin-left: -80px;
}
.parkstats_popup .parkstats_popup_content::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #272727 transparent transparent transparent;
}
.parkstats_popup.parkstats_show .parkstats_popup_content {
visibility: visible;
-webkit-animation: fade_in 1s;
animation: fade_in 1s;
}
@-webkit-keyframes fade_in {
from {opacity: 0;}
to {opacity: 1;}
}
@keyframes fade_in {
from {opacity: 0;}
to {opacity:1 ;}
}
.parkstats_popup_content, .parkstats_popup_content > a {
color: #f2f2f2 !important;
}
.parkstats_popup_content > a:hover {
color: #ffa300 !important;
}
/* end of shameless theft */
/* bingo */
#parkstats_bingo_progress {
margin: 0px !important;
font-weight: initial;
font-size: initial !important;
}
.parkstats_bingo_cell {
text-align: center;
}
/* end of bingo */