-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
65 lines (54 loc) · 974 Bytes
/
style.css
File metadata and controls
65 lines (54 loc) · 974 Bytes
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
body{
font-family: 'Courier New', Courier, monospace;
background-color: #F2E8C6;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
}
h1{
text-align: center;
font-weight: bold;
background-color: #DAD4B5;
margin: 10px;
transition: transform 0.1s ease-in-out;
}
h1:hover{
transform: scale(1.1);
}
.container{
display: flex;
justify-content: center;
align-items: center;
padding: 70px 50px;
/* display: none; */
}
i{
font-size: 150px;
padding: 0px 90px;
}
.play-btn{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-size: 50px;
transition: transform 0.2s ease-in-out;
}
.play-btn:hover{
transform: scale(1.1);
color: #800000;
}
.scoreNav{
text-align: center;
color: #000000;
}
span{
color: #800000;
}
.gameStatus h3{
font-size: 30px;
margin: 0;
padding: 0;
color: #800000;
}