aboutsummaryrefslogtreecommitdiff
path: root/website/assets/css/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'website/assets/css/style.css')
-rw-r--r--website/assets/css/style.css76
1 files changed, 48 insertions, 28 deletions
diff --git a/website/assets/css/style.css b/website/assets/css/style.css
index 4c691fb..d3f4f5a 100644
--- a/website/assets/css/style.css
+++ b/website/assets/css/style.css
@@ -6,6 +6,31 @@
6 text-transform: none !important; 6 text-transform: none !important;
7} 7}
8 8
9kbd {
10 padding: 0.1em 0.6em;
11 border: 1px solid #ccc;
12 font-size: 11px;
13 font-family: Arial, Helvetica, sans-serif;
14 background-color: #f7f7f7;
15 color: #333;
16 /*-moz-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2), 0 0 0 2px #ffffff inset;
17 -webkit-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2), 0 0 0 2px #ffffff inset;
18 box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2), 0 0 0 2px #ffffff inset;*/
19 -moz-border-radius: 3px;
20 -webkit-border-radius: 3px;
21 border-radius: 3px;
22 display: inline-block;
23 margin: 0 0.1em;
24 text-shadow: 0 1px 0 #fff;
25 line-height: 1.4;
26 white-space: nowrap;
27 vertical-align: text-top;
28}
29
30ul .fa {
31 margin-right: 0.25em;
32}
33
9.anchor { 34.anchor {
10 position: relative; 35 position: relative;
11 margin-top: -5%; 36 margin-top: -5%;
@@ -21,43 +46,38 @@
21 z-index: 3; 46 z-index: 3;
22 overflow: hidden; 47 overflow: hidden;
23 background-color: #2d3e50; 48 background-color: #2d3e50;
49 color: #FFF;
50}
51
52.fullscreen p {
53 margin-top: 120px;
54 text-align: center;
55}
56
57.fullscreen a {
58 color: #6FBEF3;
24} 59}
25 60
26.overbox { 61.overbox {
27 display: none; 62 /*display: none;*/
63 margin-left: -100%;
28} 64}
29 65
30.overbox:target { 66.overbox:target {
31 display: block; 67 /*display: block;*/
68 margin-left: 0;
69}
70
71#play > * {
72 margin-top: 120px;
73 margin-left: 90px;
74 width: calc(100% - 180px);
75 height: calc(100% - 180px);
32} 76}
33 77
34#map-frame { 78#map-frame {
35 width: 100%; 79 width: 100%;
36 height: 100%; 80 height: 100%;
37 border: none; 81 border: none;
38} 82 overflow: hidden;
39 83} \ No newline at end of file
40kbd {
41 padding: 0.1em 0.6em;
42 border: 1px solid #ccc;
43 font-size: 11px;
44 font-family: Arial, Helvetica, sans-serif;
45 background-color: #f7f7f7;
46 color: #333;
47 /*-moz-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2), 0 0 0 2px #ffffff inset;
48 -webkit-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2), 0 0 0 2px #ffffff inset;
49 box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2), 0 0 0 2px #ffffff inset;*/
50 -moz-border-radius: 3px;
51 -webkit-border-radius: 3px;
52 border-radius: 3px;
53 display: inline-block;
54 margin: 0 0.1em;
55 text-shadow: 0 1px 0 #fff;
56 line-height: 1.4;
57 white-space: nowrap;
58 vertical-align: text-top;
59}
60
61ul .fa {
62 margin-right: 0.25em;
63}