PluginProbe
Ultimate Store Kit – Store Builder Addons for Elementor, WooCommerce Store Builder, EDD Store Builder / 3.1.4
Ultimate Store Kit – Store Builder Addons for Elementor, WooCommerce Store Builder, EDD Store Builder v3.1.4
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 / src / scss / widgets / edd-standard-grid.scss

edd-standard-grid.scss in Ultimate Store Kit – Store Builder Addons for Elementor, WooCommerce Store Builder, EDD Store Builder 3.1.4, at src/scss/widgets/edd-standard-grid.scss

143 lines 2.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .usk-edd-standard-grid {
2 .usk-edd-standard-grid-wrapper {
3 display: grid;
4 grid-template-columns: repeat(3, 1fr);
5 grid-gap: 10px;
6 }
7 .usk-edd-standard-grid-item {
8 transition: all .3s ease-in-out;
9 border-width: 2px;
10 border-style: solid;
11 border-color: transparent;
12 overflow: hidden;
13 background-color: #fff;
14 &:hover {
15 border-color: #f00;
16 .usk-action-button {
17 opacity: 1;
18 transform: translateY(0);
19 }
20 .usk-edd-content {
21 transform: translateY(-50px);
22 }
23 }
24 }
25 .usk-edd-standard-grid-image {
26 position: relative;
27 z-index: 1;
28 a {
29 display: flex;
30 }
31 img {
32 width: 100%;
33 height: 100%;
34 object-fit: cover;
35 }
36 }
37 .usk-action-button {
38 position: absolute;
39 bottom: -25%;
40 left: 0;
41 text-align: center;
42 right: 0;
43 opacity: 0;
44 transform: translateY(30px);
45 transition: all .3s ease;
46 display: flex;
47 align-items: center;
48 justify-content: center;
49 gap: 5px;
50 input[type=submit]=submit] {
51 display: none;
52 }
53 a,
54 .edd-add-to-cart {
55 padding: 15px 30px;
56 font-size: 10px;
57 text-transform: uppercase;
58 font-weight: 700;
59 color: #fff;
60 text-decoration: none;
61 overflow: hidden;
62 transition: all .3s ease-in-out;
63 position: relative;
64 display: inline-block;
65 vertical-align: middle;
66 border-radius: 0;
67 line-height: 1;
68 border: 0;
69 }
70 .blue,
71 .edd-add-to-cart {
72 background-color: #000;
73 &:hover {
74 background-color: #d71400;
75 }
76 }
77 .usk-details-button {
78 a {
79 background-color: #d71400;
80 &:hover {
81 background-color: #000;
82 }
83 }
84 }
85 span.edd-cart-ajax-alert,
86 .button:not(.edd-add-to-cart) {
87 display: none;
88 }
89 }
90 .usk-edd-content {
91 text-align: center;
92 padding: 20px;
93 transform: translateY(0);
94 transition: all .3s ease;
95 }
96 .usk-edd-category {
97 margin-bottom: 6px;
98 display: inline-block;
99 a {
100 color: #5b5d66;
101 font-size: 13px;
102 text-transform: capitalize;
103 text-decoration: none;
104 transition: all .3s ease-in-out;
105 &:hover {
106 color: #d71400;
107 }
108 }
109 }
110 .usk-edd-title {
111 font-size: 15px;
112 font-weight: 700;
113 text-transform: capitalize;
114 margin: 0 0 6px;
115 a {
116 color: rgba(40, 40, 57, 0.96);
117 text-decoration: none;
118 transition: all .3s ease-in-out;
119 &:hover {
120 color: #d71400;
121 }
122 }
123 }
124 .usk-edd-price {
125 font-size: 13px;
126 font-weight: 600;
127 display: inline-flex;
128 align-content: center;
129 justify-content: center;
130 grid-column-gap: 10px;
131 }
132 }
133 @media (min-width:768px) {
134 .usk-edd-standard-grid-wrapper {
135 grid-template-columns: repeat(2, 1fr);
136 }
137 }
138 @media (min-width:1024px) {
139 .usk-edd-standard-grid-wrapper {
140 grid-template-columns: repeat(4, 1fr);
141 }
142 }
143