-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
119 lines (118 loc) · 2.22 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
*{
box-sizing: border-box;
}
body{
background-color: #404040;
overflow: hidden;
}
.svg1{
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%) scale(.6);
}
.playIcon{
transform-origin: center;
transition: fill 500ms, transform 500ms;
cursor: pointer;
}
.playIcon:hover{
fill: #0c87f9;
transform: scale(.9);
}
.scoreboard{
font-size: 4em;
text-align: center;
color: #e3e3e3;
font-family: sans-serif;
margin: 0;
font-weight: 800;
}
.board{
width: 100px;
height: 10px;
background-color: #e3e3e3;
position: absolute;
bottom: 0;
left: 50%;
transform: translate(-50%, 0);
border-radius: 2px;
}
.boll{
width: 25px;
height: 25px;
background-color: #e3e3e3;
border-radius: 50%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.timer{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #0c87f9;
font-family: sans-serif;
z-index: 1;
font-size: 6em;
margin: 0;
animation-name: timer;
animation-duration: 1s;
animation-iteration-count: 3;
}
.endWindow{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
height: 400px;
width: 400px;
background-color: #e3e3e3;
border-radius: 20px;
border: 3px solid #0c87f9;
}
.again{
width: 300px;
height: 80px;
border: 3px solid #0c87f9;
border-radius: 20px;
margin: 300px auto 0;
transition: all 500ms;
}
.retry{
fill: #0c87f9;
transform: scale(.2) ;
position: relative;
top: -110px;
transition: all 500ms;
}
.again:hover{
background-color: #0c87f9;
}
.again:hover .retry{
fill: #e3e3e3;
}
.score{
font-size: 3em;
color: black;
position: absolute;
top: 0;
left: 50%;
transform: translate(-50%);
text-align: center;
margin: 5px 0;
line-height: 160px;
color: #0c87f9;
font-family: sans-serif;
font-weight: 800;
}
@keyframes timer{
0%{
font-size: 30em;
}
100%{
font-size: .1em;
}
}