| 1 |
.usk-page-single { |
| 2 |
.woocommerce-product-gallery{ |
| 3 |
opacity: 1 !important; |
| 4 |
} |
| 5 |
input{ |
| 6 |
line-height: 1 !important; |
| 7 |
} |
| 8 |
button{ |
| 9 |
line-height: 1.2; |
| 10 |
} |
| 11 |
form.cart * { |
| 12 |
text-align:left; |
| 13 |
} |
| 14 |
|
| 15 |
.variations td.value { |
| 16 |
position: relative; |
| 17 |
} |
| 18 |
|
| 19 |
.woocommerce .woocommerce-product-gallery__wrapper, |
| 20 |
.woocommerce .woocommerce-product-gallery__trigger + .woocommerce-product-gallery__wrapper, |
| 21 |
.woocommerce .flex-viewport, |
| 22 |
.woocommerce .flex-control-thumbs img { |
| 23 |
overflow: hidden; |
| 24 |
} |
| 25 |
|
| 26 |
.woocommerce { |
| 27 |
ul.products{ |
| 28 |
display: grid; |
| 29 |
margin: 0; |
| 30 |
grid-template-columns: repeat(1, 1fr); |
| 31 |
gap: 20px; |
| 32 |
li { |
| 33 |
border: 1px solid #eee; |
| 34 |
padding: 30px !important; |
| 35 |
display: inline-block; |
| 36 |
border-radius: 5px; |
| 37 |
width: auto; |
| 38 |
} |
| 39 |
&::before, |
| 40 |
&::after { |
| 41 |
display: none; |
| 42 |
} |
| 43 |
} |
| 44 |
.product{ |
| 45 |
.onsale{ |
| 46 |
padding: 0; |
| 47 |
} |
| 48 |
form.cart .button { |
| 49 |
padding: 16px 25px; |
| 50 |
} |
| 51 |
} |
| 52 |
} |
| 53 |
|
| 54 |
.product_meta { |
| 55 |
display: flex; |
| 56 |
flex-direction: column; |
| 57 |
} |
| 58 |
.woocommerce .quantity .qty { |
| 59 |
width: 5.631em; |
| 60 |
} |
| 61 |
|
| 62 |
.woocommerce div.product .woocommerce-tabs ul.tabs { |
| 63 |
padding: 0; |
| 64 |
li { |
| 65 |
padding: 0; |
| 66 |
margin: 0 15px 0 0; |
| 67 |
border: 0; |
| 68 |
background-color: transparent; |
| 69 |
&:after, |
| 70 |
&:before { |
| 71 |
display: none; |
| 72 |
} |
| 73 |
a { |
| 74 |
padding: 15px 0; |
| 75 |
&:after { |
| 76 |
content: ''; |
| 77 |
position: absolute; |
| 78 |
background: #3287f0; |
| 79 |
height: 2px; |
| 80 |
bottom: 0; |
| 81 |
left: 0; |
| 82 |
width: 0; |
| 83 |
transition: all 0.3s ease-in-out; |
| 84 |
-webkit-transition: all 0.3s ease-in-out; |
| 85 |
} |
| 86 |
} |
| 87 |
&.active a { |
| 88 |
&:after { |
| 89 |
width: 100%; |
| 90 |
} |
| 91 |
} |
| 92 |
} |
| 93 |
} |
| 94 |
|
| 95 |
.woocommerce table.shop_attributes { |
| 96 |
border: 1px solid #eee; |
| 97 |
text-align: left; |
| 98 |
border-collapse: collapse; |
| 99 |
border-spacing: 0; |
| 100 |
|
| 101 |
tr { |
| 102 |
border: 0; |
| 103 |
border-bottom: 1px solid #eee; |
| 104 |
&:last-child { |
| 105 |
border-bottom: 0; |
| 106 |
} |
| 107 |
} |
| 108 |
th { |
| 109 |
border: 0; |
| 110 |
background-color: #f8f8f8; |
| 111 |
padding: 10px 15px; |
| 112 |
} |
| 113 |
td { |
| 114 |
border: 0; |
| 115 |
font-style: normal; |
| 116 |
background-color: transparent !important; |
| 117 |
padding: 10px 15px; |
| 118 |
p { |
| 119 |
padding: 0; |
| 120 |
} |
| 121 |
} |
| 122 |
} |
| 123 |
|
| 124 |
} |
| 125 |
|
| 126 |
@media (min-width: 768px) { |
| 127 |
.usk-page-single { |
| 128 |
.woocommerce ul.products{ |
| 129 |
grid-template-columns: repeat(2, 1fr); |
| 130 |
} |
| 131 |
} |
| 132 |
} |
| 133 |
@media (min-width: 1024px) { |
| 134 |
.usk-page-single { |
| 135 |
.woocommerce ul.products{ |
| 136 |
grid-template-columns: repeat(4, 1fr); |
| 137 |
} |
| 138 |
} |
| 139 |
} |
| 140 |
|