PluginProbe
Pay with Vipps and MobilePay for WooCommerce / 6.0.0
Pay with Vipps and MobilePay for WooCommerce v6.0.0
6.2.1 6.2.0 6.1.10 6.1.9 6.1.8 6.1.7 6.1.6 6.1.5 6.1.4 6.1.3 6.1.2 6.1.1 6.1.0 6.0.5 6.0.4 6.0.3 6.0.2 6.0.1 6.0.0 5.4.3 5.4.2 5.4.1 5.4.0 5.3.4 trunk All 183 releases
woo-vipps / recurring / src / entrypoints / main / main.scss

main.scss in Pay with Vipps and MobilePay for WooCommerce 6.0.0, at recurring/src/entrypoints/main/main.scss

83 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .vipps-recurring-icon {
2 width: 70px;
3 }
4
5 .vipps-recurring-payment-redirect-page {
6 z-index: 100000;
7 position: absolute;
8 top: 0;
9 left: 0;
10 height: 100%;
11 width: 100%;
12 background: #FFF;
13 color: #161225;
14
15 &__container {
16 height: 100%;
17 display: flex;
18 align-items: center;
19 justify-content: center;
20 padding: 0 15px;
21
22 &__content {
23 &__logo {
24 display: flex;
25 justify-content: center;
26 width: 100%;
27
28 img {
29 height: 100%;
30 width: 150px;
31 }
32 }
33
34 &__loading {
35 display: flex;
36 justify-content: center;
37
38 &__spinner {
39 @keyframes spin {
40 to {
41 transform: rotate(360deg);
42 }
43 }
44 @-webkit-keyframes spin {
45 to {
46 transform: rotate(360deg);
47 }
48 }
49
50 display: inline-block;
51 margin: 20px 0;
52 width: 32px;
53 height: 32px;
54 border: 2px solid rgba(0, 0, 0, .3);
55 border-radius: 50%;
56 border-top-color: #161225;
57 animation: spin 1s ease-in-out infinite;
58 }
59 }
60
61 &__text {
62 font-size: 1.2rem;
63 text-align: center;
64
65 p {
66 padding: 0;
67 margin: 0;
68 }
69
70 &__heading {
71 font-size: 1.5rem;
72 font-weight: 600;
73 margin-top: 15px;
74 }
75
76 &__action {
77 margin-top: 30px;
78 }
79 }
80 }
81 }
82 }
83