-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (44 loc) · 775 Bytes
/
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
body{
background: #ffea00;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.header{
display: flex;
justify-content: center;
font-size: 40px;
}
.score-board{
display: flex;
justify-content: center;
gap:20px;
font-size: 20px;
}
.playagain-button-div{
display: flex;
justify-content: center;
}
.hidebutton{
display: none;
}
.buttonstyle{
border-radius: 28px;
width: 100px;
height: 44px;
border: 4px solid red;
font-weight: 900;
background-color: black;
color: white;
}
.image_container{
display: flex;
gap: 100px;
justify-content: center;
flex-wrap: wrap;
}
.button{
width: 16em;
transition: 0.5s;
}
.button-hover{
transform: scale(1.1);
}