PluginProbe
Ultimate Store Kit – Store Builder Addons for Elementor, WooCommerce Store Builder, EDD Store Builder / 2.0.1
Ultimate Store Kit – Store Builder Addons for Elementor, WooCommerce Store Builder, EDD Store Builder v2.0.1
3.1.4 3.0.8 3.0.9 3.1.0 3.1.2 3.1.3 3.0.7 3.0.5 3.0.4 3.0.3 3.0.2 trunk 1.5.0 1.5.1 1.5.2 1.6.1 1.6.2 1.6.3 1.6.4 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 All 93 releases
ultimate-store-kit / assets / css / usk-shiny-carousel.css

usk-shiny-carousel.css in Ultimate Store Kit – Store Builder Addons for Elementor, WooCommerce Store Builder, EDD Store Builder 2.0.1, at assets/css/usk-shiny-carousel.css

128 lines 3.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 @charset "UTF-8";
2 .usk-shiny-carousel {
3 --btn-width: 100%;
4 }
5 .usk-shiny-carousel .usk-item {
6 box-shadow: 0 8px 24px rgba(149, 157, 165, 0.2);
7 overflow: hidden;
8 }
9 .usk-shiny-carousel .usk-item:hover .usk-action-btn {
10 transform: translateX(0px);
11 }
12 .usk-shiny-carousel .usk-item:hover .usk-button,
13 .usk-shiny-carousel .usk-item:hover .added_to_cart {
14 transform: translateY(0px);
15 opacity: 1;
16 visibility: visible;
17 }
18 .usk-shiny-carousel .usk-action-btn {
19 transform: translateX(25px);
20 }
21 .usk-shiny-carousel .usk-shoping {
22 top: clamp(10px, 1vw, 25px);
23 right: clamp(10px, 1vw, 25px);
24 }
25 .usk-shiny-carousel .usk-badge-label-wrapper {
26 left: 0;
27 top: 0;
28 }
29 .usk-shiny-carousel .usk-button.added {
30 display: none;
31 transition: all 3s ease-in-out;
32 }
33 .usk-shiny-carousel .usk-button.loading::after {
34 content: "";
35 width: 20px;
36 height: 20px;
37 border: 2px dotted #fff;
38 border-radius: 50%;
39 margin-left: -15px;
40 display: inline-block;
41 position: relative;
42 position: absolute;
43 top: 31%;
44 text-align: center;
45 animation: rotation 2s linear infinite;
46 }
47 .usk-shiny-carousel .usk-button.loading i {
48 transition: all 0.3s ease-in-out;
49 transform: translate(70px);
50 opacity: 0.02;
51 }
52 .usk-shiny-carousel .added_to_cart {
53 transition: all 3s ease;
54 }
55 .usk-shiny-carousel .added_to_cart::after {
56 content: "";
57 margin-left: 5px;
58 font-size: 20px;
59 }
60 .usk-shiny-carousel .added_to_cart i {
61 display: none;
62 }
63 .usk-shiny-carousel .usk-button,
64 .usk-shiny-carousel .added_to_cart {
65 position: absolute;
66 font-weight: 600;
67 text-align: center;
68 left: 0;
69 bottom: 0;
70 width: var(--btn-width);
71 margin: 0 calc((100% - var(--btn-width)) / 2);
72 background: #2b2d42;
73 text-decoration: none;
74 color: #fff;
75 text-transform: capitalize;
76 transform: translateY(100%);
77 opacity: 0;
78 visibility: hidden;
79 transition: all 0.3s ease;
80 }
81 .usk-shiny-carousel .usk-button a,
82 .usk-shiny-carousel .added_to_cart a {
83 color: #fff;
84 }
85 .usk-shiny-carousel .usk-button .button-icon:before,
86 .usk-shiny-carousel .added_to_cart .button-icon:before {
87 margin: -5px;
88 transition: all 0.3s ease;
89 opacity: 0;
90 visibility: hidden;
91 }
92 .usk-shiny-carousel .usk-button:hover .button-icon:before,
93 .usk-shiny-carousel .added_to_cart:hover .button-icon:before {
94 margin-left: 10px;
95 opacity: 1;
96 visibility: visible;
97 }
98 .usk-shiny-carousel .usk-have-rating .usk-price {
99 margin: 0;
100 opacity: 1;
101 transition: all 0.3s ease;
102 transform: translateY(0);
103 }
104 .usk-shiny-carousel .usk-have-rating .usk-rating {
105 transform: translateY(0);
106 opacity: 0;
107 transition: all 0.3s ease;
108 }
109 .usk-shiny-carousel .usk-have-rating:hover .usk-rating {
110 transform: translateY(-20px);
111 opacity: 1;
112 }
113 .usk-shiny-carousel .usk-have-rating:hover .usk-price {
114 transform: translateY(-20px);
115 opacity: 0;
116 visibility: hidden;
117 }
118 .usk-shiny-carousel .usk-item .usk-rating {
119 position: absolute;
120 width: 100%;
121 display: flex;
122 }
123 .usk-shiny-carousel .usk-button,
124 .usk-shiny-carousel .added_to_cart {
125 height: clamp(40px, 3vw, 50px);
126 line-height: clamp(40px, 3vw, 50px);
127 font-size: 14px;
128 }