PluginProbe
Ultimate Store Kit – Store Builder Addons for Elementor, WooCommerce Store Builder, EDD Store Builder / 2.0.4
Ultimate Store Kit – Store Builder Addons for Elementor, WooCommerce Store Builder, EDD Store Builder v2.0.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 / assets / css / usk-edd-standard-grid.css

usk-edd-standard-grid.css in Ultimate Store Kit – Store Builder Addons for Elementor, WooCommerce Store Builder, EDD Store Builder 2.0.4, at assets/css/usk-edd-standard-grid.css

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