blob: 4aa3940442b432d35764c0f0531d2fea1c95b15d [file] [log] [blame]
Anand Doshida858cc2015-02-24 17:50:44 +05301@border-color: #d1d8dd;
Anand Doshie3bd78e2016-04-22 18:53:21 +05302@light-border-color: #EBEFF2;
3@text-muted: #8D99A6;
4@light-bg: #fafbfc;
Anand Doshida858cc2015-02-24 17:50:44 +05305
6.web-long-description {
7 font-size: 18px;
8 line-height: 200%;
9}
Anand Doshie3bd78e2016-04-22 18:53:21 +053010
Anand Doshida858cc2015-02-24 17:50:44 +053011.item-stock {
12 margin-bottom: 10px !important;
13}
14
15.product-link {
16 display: block;
17 text-align: center;
18}
19
Anand Doshida858cc2015-02-24 17:50:44 +053020@media (max-width: 767px) {
21 .product-image {
22 height: 0px;
23 padding: 0px 0px 100%;
24 overflow: hidden;
25 }
26}
27
28.product-image-square {
29 width: 100%;
30 height: 0;
31 padding: 50% 0px;
32 background-size: cover;
33 background-repeat: no-repeat;
34 background-position: center top;
Rushabh Mehta4b9238a2016-05-12 15:22:59 +053035 border-radius-top: 4px;
36 border-radius-right: 4px;
Anand Doshida858cc2015-02-24 17:50:44 +053037}
38
39.product-image.missing-image {
40 .product-image-square;
Anand Doshida858cc2015-02-24 17:50:44 +053041 position: relative;
Anand Doshie3bd78e2016-04-22 18:53:21 +053042 background-color: @light-border-color;
Anand Doshida858cc2015-02-24 17:50:44 +053043}
44
45.product-image.missing-image .octicon {
46 font-size: 32px;
47 color: @border-color;
48}
49
50.product-text {
51 padding: 15px 0px;
52}
Anand Doshi81bded12015-05-27 16:48:06 -040053
Anand Doshia6f48682016-04-09 22:25:21 +053054.product-label {
Kanchan Chauhan11638ba2016-04-20 16:20:49 +053055 padding-bottom: 4px;
56 text-transform: uppercase;
57 font-size: 12px;
58}
59
Anand Doshia6f48682016-04-09 22:25:21 +053060.product-search {
61 margin-bottom: 15px;
62}
63
64
Anand Doshi81bded12015-05-27 16:48:06 -040065@media (max-width: 767px) {
66 .product-search {
67 width: 100%;
Anand Doshi81bded12015-05-27 16:48:06 -040068 }
69}
Kanchan Chauhan11638ba2016-04-20 16:20:49 +053070
71.borderless td, .borderless th {
72 border-bottom: 1px solid @light-border-color;
73 padding-left:0px !important;
74 line-height: 1.8em !important;
75}
76
77.item-desc {
78 border-top: 2px solid @light-border-color;
79 padding-top:10px;
80}
Kanchan Chauhane0818f82016-04-22 14:39:02 +053081
82.featured-products {
83 border-top: 1px solid @light-border-color;
84}
Anand Doshie3bd78e2016-04-22 18:53:21 +053085
86.transaction-list-item {
Anand Doshie3bd78e2016-04-22 18:53:21 +053087 &:hover,
88 &:active,
89 &:focus {
90 background-color: @light-bg;
91 }
92
93 .indicator {
Anand Doshie3bd78e2016-04-22 18:53:21 +053094 font-weight: inherit;
95 color: @text-muted;
Anand Doshie3bd78e2016-04-22 18:53:21 +053096 }
97
98 .transaction-time {
99 // margin-left: 15px;
100 }
101
102 .items-preview,
103 .transaction-time {
104 margin-top: 5px;
105 }
106}
107
108// order.html
109.transaction-subheading {
110 .indicator {
111 font-weight: inherit;
112 color: @text-muted;
113 }
114}
115
116.order-container {
117 margin: 50px 0px;
118
119 .order-item-header .h6 {
120 padding: 7px 15px;
121 }
122
123 .order-items {
124 margin: 30px 0px 0px;
125 }
126
127 .order-item-table {
128 margin: 0px -15px;
129 }
130
131 .order-item-header {
132 border-bottom: 1px solid #d1d8dd;
133 }
134
135 .order-image-col {
136 padding-right: 0px;
137 }
138
139 .order-image {
140 max-width: 55px;
141 max-height: 55px;
142 margin-top: -5px;
143 }
144
145 .order-taxes {
146 margin-top: 30px;
147
148 .row {
149 margin-top: 15px;
150 }
151 }
152
153 .tax-grand-total-row {
Anand Doshie3bd78e2016-04-22 18:53:21 +0530154 padding-top: 15px;
Rushabh Mehtaac123c52016-05-20 16:36:56 +0530155 padding-bottom: 30px;
Anand Doshie3bd78e2016-04-22 18:53:21 +0530156 }
Rushabh Mehta4b9238a2016-05-12 15:22:59 +0530157
158 .tax-grand-total {
159 display: inline-block;
160 font-size: 16px;
161 font-weight: bold;
162 margin-top: 5px;
163 }
Anand Doshie3bd78e2016-04-22 18:53:21 +0530164}
165
Kanchan Chauhan239b3512016-05-02 11:43:44 +0530166.cart-container {
167 margin: 50px 0px;
Kanchan Chauhanc8d47da2016-06-22 15:46:38 +0530168
169 .checkout {
170 margin-bottom:15px;
171 }
Kanchan Chauhan239b3512016-05-02 11:43:44 +0530172
173 .cart-item-header .h6 {
174 padding: 7px 15px;
175 }
176
177 .cart-items {
178 margin: 30px 0px 0px;
179 }
180
181 .cart-item-table {
182 margin: 0px -15px;
183 }
184
185 .cart-item-header {
186 border-bottom: 1px solid #d1d8dd;
187 }
188
189 .cart-image-col {
190 padding-right: 0px;
191 }
192
193 .cart-image {
194 max-width: 55px;
195 max-height: 55px;
196 margin-top: -5px;
197 }
198
199 .cart-taxes {
200 margin-top: 30px;
201
202 .row {
203 margin-top: 15px;
204 }
205 }
206
207 .tax-grand-total-row {
208 border-top: 1px solid @border-color;
209 padding-top: 15px;
210 }
Rushabh Mehta4b9238a2016-05-12 15:22:59 +0530211
Kanchan Chauhan239b3512016-05-02 11:43:44 +0530212 .cart-addresses {
213 margin-top: 50px;
214 }
215}
216
Kanchan Chauhanc8d47da2016-06-22 15:46:38 +0530217.cart-items-dropdown .cart-dropdown,
Kanchan Chauhan239b3512016-05-02 11:43:44 +0530218.item_name_dropdown {
Kanchan Chauhanc8d47da2016-06-22 15:46:38 +0530219 display: none;
Rushabh Mehta4b9238a2016-05-12 15:22:59 +0530220
Kanchan Chauhan239b3512016-05-02 11:43:44 +0530221}
Rushabh Mehta4b9238a2016-05-12 15:22:59 +0530222
Kanchan Chauhanc8d47da2016-06-22 15:46:38 +0530223.cart-dropdown-container {
224 width: 400px;
225 padding: 15px;
226
Kanchan Chauhan239b3512016-05-02 11:43:44 +0530227 .item-price {
228 display: block !important;
229 padding-bottom: 10px;
230 }
Rushabh Mehta4b9238a2016-05-12 15:22:59 +0530231
Kanchan Chauhan239b3512016-05-02 11:43:44 +0530232 .cart-item-header {
233 border-bottom: 1px solid #d1d8dd;
234 }
Kanchan Chauhanc8d47da2016-06-22 15:46:38 +0530235
236 .cart-items-dropdown {
237 max-height: 350px;
238 overflow: auto;
239 }
240
241 .cart-items-dropdown .cart-dropdown {
Kanchan Chauhan239b3512016-05-02 11:43:44 +0530242 display:block;
243 margin-top:15px;
244 }
Rushabh Mehta4b9238a2016-05-12 15:22:59 +0530245
Kanchan Chauhan239b3512016-05-02 11:43:44 +0530246 .item_name_dropdown {
247 display:block;
248 }
Rushabh Mehta4b9238a2016-05-12 15:22:59 +0530249
Kanchan Chauhan239b3512016-05-02 11:43:44 +0530250 .item-description,
251 .cart-items .checkout,
252 .item_name_and_description {
253 display: none;
254 }
Rushabh Mehta4b9238a2016-05-12 15:22:59 +0530255
Kanchan Chauhan239b3512016-05-02 11:43:44 +0530256 .checkout-btn {
Kanchan Chauhanb3573a82016-05-09 12:30:58 +0530257 padding-top:25px;
Kanchan Chauhan239b3512016-05-02 11:43:44 +0530258 }
259 .col-name-description {
260 margin-bottom:8px;
261 }
Kanchan Chauhanc8d47da2016-06-22 15:46:38 +0530262}
Rushabh Mehta4b9238a2016-05-12 15:22:59 +0530263
Kanchan Chauhanc8d47da2016-06-22 15:46:38 +0530264.number-spinner {
265 width:100px;
266 margin-top:5px;
267}
268
269.cart-btn {
270 border-color: #ccc;
271}
272.cart-qty {
273 text-align:center;
Kanchan Chauhan239b3512016-05-02 11:43:44 +0530274}
275
Anand Doshia6f48682016-04-09 22:25:21 +0530276.product-list-link {
277 .row {
278 border-bottom: 1px solid @light-border-color;
279 }
280
281 .row:hover {
282 background-color: @light-bg;
283 }
284
285 .row > div {
286 padding-top: 15px;
287 padding-bottom: 15px;
288 }
289}
290
291.product-list-link:first-child .row {
292 border-top: 1px solid @light-border-color;
293}
294
295.item-group-nav-buttons {
296 margin-top: 15px;
297}
298
Rushabh Mehtaac123c52016-05-20 16:36:56 +0530299.footer-subscribe {
300 .btn-default {
301 background-color: transparent;
302 border: 1px solid @border-color;
303 }
304}
305
Anand Doshia6f48682016-04-09 22:25:21 +0530306@media (min-width: 992px) {
307 .footer-subscribe {
308 max-width: 350px;
309 }
310}
Kanchan Chauhan239b3512016-05-02 11:43:44 +0530311
312.item-group-content {
313 margin-top: 30px;
314}
315
Rushabh Mehta4b9238a2016-05-12 15:22:59 +0530316.product-image-img {
Kanchan Chauhan239b3512016-05-02 11:43:44 +0530317 border: 1px solid @light-border-color;
318 border-radius: 3px;
319}
320
Rushabh Mehta4b9238a2016-05-12 15:22:59 +0530321.product-text {
Kanchan Chauhan239b3512016-05-02 11:43:44 +0530322 border-top: 1px solid @light-border-color;
323 padding: 15px;
324 word-wrap: break-word;
325 height: 75px;
326}
327
Rushabh Mehta4b9238a2016-05-12 15:22:59 +0530328.product-image-wrapper {
329 padding-bottom: 40px;
Kanchan Chauhanc8d47da2016-06-22 15:46:38 +0530330}