-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
59 lines (51 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
59
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
*{
box-sizing: border-box;
padding: 0;
margin: 0;
}
.canvas{
width: 500px;
height: 500px;
background-color: black;
/* border: 1px solid red; */
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50% , -50%);
display: none;
}
.start , .result{
width: 500px;
height: 500px;
background-color: black;
color: white;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: flex;
justify-content: center;
align-items: center;
text-align: center;
transition: 0.5s;
}
.start h2,
.result h2{
font-family: "Press Start 2P";
font-size: 40px;
margin-bottom: 100px;
}
.start button,
.result button{
font-size: 30px;
background-color: aqua;
padding: 10px 20px;
border-radius: 30px;
border: none;
outline: none;
cursor: pointer;
}
.winning h2 {
font-size: 30px;
}