-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstyle.css
108 lines (105 loc) · 1.94 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
99
100
101
102
103
104
105
106
107
108
@font-face{
font-family: "8bit";
src: url(slkscr.ttf);
}
html, body {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: default;
padding: 0;
margin: 0;
overflow: hidden;
height: 100%;
font-family: "8bit";
color:white;
}
body{
min-height: 100%;
}
#arena {
}
#test {
background: blue;
width: 50px;
position: relative;
}
#background {
display: inline-block;
height: 100%;
width: 100%;
vertical-align: middle;
text-align: center;
}
#background > h1 {
font-family: "8bit";
margin: 0;
font-size: 10em;
text-align: center;
}
.logo {
display: inline-block;
margin-top: 0.5em;
color:white;
font-family: "8bit";
font-size: 10em;
vertical-align: bottom;
}
.qrCode {
height: 10em;
width: 10em;
margin: 30px;
display: inline-block;
background: white;
color:white;
border: solid 3px white;
}
.qrHolder > span {
color: white;
font-family: "8bit";
}
.qrHolder {
text-align: center;
display: inline-block;
}
#littleConsole {
padding-top: 3em;
}
#credits {
/*make hooverable area greater*/
padding: 5em 1em 1em 5em;
display: inline-block;
text-align: right;
position: absolute;
bottom: 0px;
right: 0px;
overflow: hidden;
}
#credits a {
cursor: auto;
color: inherit;
text-decoration: none;
}
.hiding {
display: block;
margin-top: 1em;
margin-bottom: -3em;
height: 2em;
-webkit-transition: margin-bottom .5s ease-in;
transition: margin-bottom .5s ease-in;
}
#credits:hover .hiding {
margin-bottom: 0em;
-webkit-transition: margin-bottom .5s ease-out;
transition: margin-bottom .5s ease-out;
}
#startBtn {
border: 0.3em solid white;
display: inline-block;
margin-top: 3em;
padding: 1em;
opacity: 0.1;
}