-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
styles.css
130 lines (115 loc) · 2.01 KB
/
styles.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
body {
margin: 0;
color: white;
}
main {
position: absolute;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
background-image: url("../background.webp");
background-repeat: no-repeat;
background-size: cover;
z-index: 12;
}
.score {
position: absolute;
top: 10px;
left: 10px;
font-size: 2em;
z-index: 100;
display: none;
width: 100%;
margin: 0;
font-family: "Bangers", cursive;
}
.score-number {
display: inline-block;
margin: 0;
}
.lose {
right: 1em;
position: absolute;
top: 0;
}
.game {
position: absolute;
z-index: 100;
width: 100%;
height: 100%;
}
video {
position: absolute;
z-index: -10;
width: 100%;
height: 100%;
transform: scaleX(-1);
-moz-transform: scaleX(-1);
-o-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
}
canvas#output {
position: absolute;
width: 100%;
height: 100%;
z-index: 15;
transform: scaleX(-1);
-moz-transform: scaleX(-1);
-o-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
}
.intro {
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
"Lucida Sans", Arial, sans-serif;
display: block;
z-index: 130;
text-align: center;
width: 60%;
}
.intro h1 {
font-size: 6em;
color: yellow;
text-shadow: 3px 3px 3px black;
font-family: "Bangers", Helvetica;
letter-spacing: 5px;
margin: 0;
}
.game-over {
display: none;
font-size: 6em;
text-shadow: 3px 3px 3px black;
font-family: "Bangers", Helvetica;
letter-spacing: 5px;
margin: 0;
position: absolute;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
z-index: 100;
}
.intro p {
font-size: 1.4em;
text-shadow: 1px 1px 3px black;
}
.intro p:last-of-type {
margin-bottom: 2em;
}
.intro button {
padding: 0.4em 1em;
font-size: 1.3em;
border-radius: 3px;
border: none;
}
.intro button:hover {
cursor: pointer;
}
.mobile-intro {
display: none;
font-family: Helvetica;
width: 90%;
text-align: center;
line-height: 1.5em;
}