-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
71 lines (63 loc) · 1.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
.wapuloader-demo .wpcf7-spinner,
.wpcf7 .wpcf7-spinner {
visibility: hidden;
display: inline-block;
position: relative;
background-image: none;
background-color: transparent;
opacity: 1;
width: 32px;
height: 32px;
border: none;
padding: 0;
margin: 0 0 0 8px;
vertical-align: middle;
}
.wapuloader-demo .wpcf7-spinner::before,
.wpcf7 .wpcf7-spinner::before {
position: absolute;
content: url('./wapuu-original.svg');
background-color: transparent;
width: 32px;
height: 32px;
border: none;
transform-origin: center;
animation-name: rolling-wapuu;
animation-duration: 1000ms;
animation-timing-function: ease-out;
animation-direction: alternate;
animation-iteration-count: infinite;
}
.wapuloader-demo .wpcf7-spinner,
.wpcf7 form.submitting .wpcf7-spinner {
visibility: visible;
}
@media (prefers-reduced-motion: reduce) {
.wapuloader-demo .wpcf7-spinner::before,
.wpcf7 .wpcf7-spinner::before {
animation-name: blink;
animation-duration: 4000ms;
animation-timing-function: linear;
}
}
@keyframes rolling-wapuu {
from {
transform: rotate(0deg);
left: 0;
}
to {
transform: rotate(360deg);
left: 64px;
}
}
@keyframes blink {
from {
opacity: 0.1;
}
50% {
opacity: 0.9;
}
to {
opacity: 0.1;
}
}