-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
72 lines (72 loc) · 1.19 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
#title {
font-family: 'Press Start 2P';
font-size: 50px;
width: 100%;
text-align: center;
padding: 20px;
color: white;
}
#subtitle {
font-family: 'Press Start 2P';
font-size: 35px;
width: 100%;
padding: 30px;
text-align: center;
color: red;
}
#controls {
font-family: 'Press Start 2P';
font-size: 30px;
width: 100%;
padding: 10px;
text-align: center;
color: white;
}
#green {
font-family: 'Press Start 2P';
font-size: 25px;
width: 100%;
padding: 10px;
text-align: center;
color: green;
}
#yellow {
font-family: 'Press Start 2P';
font-size: 25px;
width: 100%;
padding: 10px;
text-align: center;
color: yellow;
}
#red {
font-family: 'Press Start 2P';
font-size: 25px;
width: 100%;
padding: 10px;
text-align: center;
color: red;
}
#blue {
font-family: 'Press Start 2P';
font-size: 25px;
width: 100%;
padding: 10px;
text-align: center;
color: blue;
}
.button {
border-radius: 10px;
font-family: 'Press Start 2P';
background-color: red;
color: #FFFFFF;
text-align: center;
font-size: 28px;
width: 200px;
cursor: pointer;
margin: 20px;
position: absolute;
top: 70%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}