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

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