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
|
/*
* Mods
*/
.pure-menu-heading {
text-transform: none !important;
}
kbd {
padding: 0.1em 0.6em;
border: 1px solid #ccc;
font-size: 11px;
font-family: Arial, Helvetica, sans-serif;
background-color: #f7f7f7;
color: #333;
/*-moz-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2), 0 0 0 2px #ffffff inset;
-webkit-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2), 0 0 0 2px #ffffff inset;
box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2), 0 0 0 2px #ffffff inset;*/
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
display: inline-block;
margin: 0 0.1em;
text-shadow: 0 1px 0 #fff;
line-height: 1.4;
white-space: nowrap;
vertical-align: text-top;
}
ul .fa {
margin-right: 0.25em;
}
.anchor {
position: relative;
margin-top: -5%;
}
.fullscreen {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
z-index: 3;
overflow: hidden;
background-color: #2d3e50;
color: #FFF;
}
.fullscreen p {
text-align: center;
}
.fullscreen a {
color: #6FBEF3;
}
.overbox {
display: none;
}
.overbox:target {
display: block;
}
#play > * {
margin-top: 120px;
margin-left: 120px;
width: calc(100% - 180px);
height: calc(100% - 180px);
}
#map-frame {
width: 100%;
height: 100%;
border: none;
overflow: hidden;
}
|