forked from akaProxy/pong
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (78 loc) · 1.25 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
@font-face{
font-family: "8bit";
src: url(slkscr.ttf);
}
html, body {
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;
}
.qrHolder > span {
color: white;
font-family: "8bit";
}
.qrHolder {
text-align: center;
display: inline-block;
}
#littleConsole {
padding-top: 3em;
}
#notes {
display: inline-block;
text-align: right;
position: absolute;
bottom: 0px;
right: 0px;
padding: 1em;
cursor:pointer;
}
#startBtn {
border: 0.3em solid white;
display: inline-block;
margin-top: 3em;
padding: 1em;
opacity: 0.1;
}