PluginProbe
GiveWP – Donation Plugin and Fundraising Platform / 4.16.9
GiveWP – Donation Plugin and Fundraising Platform v4.16.9
4.16.9 4.16.8.1 4.16.8 4.16.7.2 4.16.7.1 4.16.7 4.16.6.1 4.16.6 4.16.5.1 4.16.5 4.16.4 4.16.3 4.16.2 4.16.1 4.16.0 4.15.5 4.15.4 4.15.3 4.15.2 4.15.1 4.15.0 2.3.0 2.3.1 2.3.2 2.30.0 All 255 releases
give / src / Admin / components / Spinner / style.module.scss

style.module.scss in GiveWP – Donation Plugin and Fundraising Platform 4.16.9, at src/Admin/components/Spinner/style.module.scss

72 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .spinner {
2 display: inline-block;
3 }
4
5 .tiny {
6 width: 16px;
7 height: 16px;
8 }
9
10 .small {
11 width: 30px;
12 height: 30px;
13 }
14
15 .medium {
16 width: 60px;
17 height: 60px;
18 }
19
20 .large {
21 width: 100px;
22 height: 100px;
23 }
24
25 .spinner::after {
26 content: ' ';
27 display: block;
28 width: 100%;
29 height: 100%;
30 border-radius: 50%;
31 border-color: #66bb6a transparent #66bb6a transparent !important;
32 animation: givewp-spinner 1.2s linear infinite !important;
33 }
34
35 .spinner.tiny::after {
36 border: 2px solid #66bb6a;
37 }
38
39 .spinner.small::after {
40 border: 3px solid #66bb6a;
41 }
42
43 .spinner.medium::after {
44 border: 6px solid #66bb6a;
45 }
46 .spinner.large::after {
47 border: 9px solid #66bb6a;
48 }
49
50 @keyframes givewp-spinner {
51 0% {
52 transform: rotate(0deg);
53 }
54 100% {
55 transform: rotate(360deg);
56 }
57 }
58
59 .arcSpinner {
60 animation: spin 0.8s linear infinite;
61 display: inline-block;
62 margin-left: var(--givewp-spacing-2);
63 }
64
65 @keyframes spin {
66 0% {
67 transform: rotate(0deg);
68 }
69 100% {
70 transform: rotate(360deg);
71 }
72 }