-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
58 lines (53 loc) · 1.06 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
.stopwatch{
font-size: 35px;
color: white;
/* word-spacing: 7px; not working? idk why*/
}
#rematchButton , #welcomeButton{
color: black;
font-size: 2vw;
background-color: aquamarine;
border-radius: 7px;
padding: 12px 16px;
cursor: pointer;
}
.hidden{
display: none;
}
#gameOverMessage {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
/* background-color: rgb(218, 164, 164); */
/* color: black; */
background-color: white;
padding: 20px;
border-radius: 10px;
text-align: center;
}
#rematchButton , #welcomeButton {
margin-top: 20px;
}
#welcomeMessage {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
/* background-color: rgb(218, 164, 164); */
/* color: black; */
background-color: white;
padding: 20px 55px;
border-radius: 10px;
text-align: center;
}
.msg{
font-size: 4vw;
text-align: center;
color: black;
}
.instructions{
font-size: 1.5vw;
text-align: center;
color: black;
}