-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
57 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
#letgo {
margin-left: 133px;
border: none;
font-size: 25px;
cursor: pointer;
border-radius: 10px;
border: 1px solid #ffb433;
max-width: 120px;
text-align: center;
margin: 0 auto;
margin-bottom: 5px;
padding: 1px;
}
#letgo:active {
background-color: #9c6308;
color: white;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
img {
-webkit-animation-name: renderAnimate;
animation-name: renderAnimate;
-webkit-animation-duration: 0.3s;
animation-duration: 0.3s;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
-webkit-animation-fill-mode: backwards;
animation-fill-mode: backwards;
margin: 0 auto;
}
.center {
max-width: 310px;
margin: 0 auto;
margin-top: 100px;
}
@-webkit-keyframes renderAnimate {
0% {
filter: blur(50px);
}
100% {
filter: blur(0px);
}
}
@keyframes renderAnimate {
0% {
filter: blur(50px);
}
100% {
filter: blur(0px);
}
}/*# sourceMappingURL=style.css.map */