-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
119 lines (105 loc) · 1.96 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
109
110
111
112
113
114
115
116
117
118
119
#instruction {
width: 550px;
text-align: center;
margin: auto;
}
h1 {
color: red;
font-size: 50px;
font-family: cursive;
margin-bottom: 1px;
}
p {
font-size: 20px;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
#container {
width: 500px;
height: 400px;
background-color: aqua;
margin: 60px auto;
padding: 20px;
border-radius: 10px;
position: relative;
}
#score {
padding: 11px;
background-color: white;
width: 75px;
text-align: center;
border-radius: 100%;
}
#correct {
padding: 11px;
background-color: rgb(30, 210, 30);
width: 75px;
position: absolute;
left: 215px;
text-align: center;
top: 20px;
border-radius: 100%;
display: none;
}
#wrong {
padding: 11px;
background-color: rgb(218, 28, 28);
width: 75px;
text-align: center;
position: absolute;
left: 215px;
top: 20px;
border-radius: 100%;
display: none;
}
#timer {
padding: 11px;
background-color: rgb(30, 108, 210);
width: 75px;
position: absolute;
right: 20px;
text-align: center;
top: 20px;
border-radius: 100%;
display: none;
}
#screen {
width: 400px;
height: 200px;
background-color: pink;
text-align: center;
margin: 20px auto 20px auto;
font-size: 100px;
border-radius: 10px;
}
#gameOverBanner {
width: 450px;
height: 200px;
background-color: crimson;
border-radius: 10px;
margin: 5px auto;
position: absolute;
top: 100px;
right: 45px;
text-align: center;
font-size: 41px;
display: none;
}
#myInput {
text-align: center;
margin: auto;
display: block;
height: 50px;
width: 250px;
background-color: rgb(14, 13, 14);
border-radius: 10px;
font-size: 30px;
color: white;
}
#startButton {
font-size: 20px;
border-radius: 10px;
width: 120px;
padding: 11px;
margin: 15px 190px;
background-color: cornflowerblue;
}