blob: a645f28d710fde2faf178d4295ca0a8bcbb8caec [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
Rushabh Mehtaaedad642016-10-04 11:40:22 +053011.web-page-content {
12 margin-bottom: 30px;
13}
14
Anand Doshida858cc2015-02-24 17:50:44 +053015.item-stock {
16 margin-bottom: 10px !important;
17}
18
19.product-link {
20 display: block;
21 text-align: center;
22}
23
Anand Doshida858cc2015-02-24 17:50:44 +053024@media (max-width: 767px) {
25 .product-image {
26 height: 0px;
27 padding: 0px 0px 100%;
28 overflow: hidden;
29 }
30}
31
32.product-image-square {
33 width: 100%;
34 height: 0;
35 padding: 50% 0px;
36 background-size: cover;
37 background-repeat: no-repeat;
38 background-position: center top;
Rushabh Mehta4b9238a2016-05-12 15:22:59 +053039 border-radius-top: 4px;
40 border-radius-right: 4px;
Anand Doshida858cc2015-02-24 17:50:44 +053041}
42
43.product-image.missing-image {
44 .product-image-square;
Anand Doshida858cc2015-02-24 17:50:44 +053045 position: relative;
Anand Doshie3bd78e2016-04-22 18:53:21 +053046 background-color: @light-border-color;
Anand Doshida858cc2015-02-24 17:50:44 +053047}
48
49.product-image.missing-image .octicon {
50 font-size: 32px;
51 color: @border-color;
52}
53
54.product-text {
55 padding: 15px 0px;
56}
Anand Doshi81bded12015-05-27 16:48:06 -040057
Anand Doshia6f48682016-04-09 22:25:21 +053058.product-search {
59 margin-bottom: 15px;
60}
61
62
Anand Doshi81bded12015-05-27 16:48:06 -040063@media (max-width: 767px) {
64 .product-search {
65 width: 100%;
Anand Doshi81bded12015-05-27 16:48:06 -040066 }
67}
Kanchan Chauhan11638ba2016-04-20 16:20:49 +053068
69.borderless td, .borderless th {
70 border-bottom: 1px solid @light-border-color;
71 padding-left:0px !important;
72 line-height: 1.8em !important;
73}
74
75.item-desc {
76 border-top: 2px solid @light-border-color;
77 padding-top:10px;
78}
Kanchan Chauhane0818f82016-04-22 14:39:02 +053079
80.featured-products {
81 border-top: 1px solid @light-border-color;
82}
Anand Doshie3bd78e2016-04-22 18:53:21 +053083
84.transaction-list-item {
Anand Doshie3bd78e2016-04-22 18:53:21 +053085 &:hover,
86 &:active,
87 &:focus {
88 background-color: @light-bg;
89 }
90
91 .indicator {
Anand Doshie3bd78e2016-04-22 18:53:21 +053092 font-weight: inherit;
93 color: @text-muted;
Anand Doshie3bd78e2016-04-22 18:53:21 +053094 }
95
96 .transaction-time {
Anand Doshie3bd78e2016-04-22 18:53:21 +053097 margin-top: 5px;
98 }
Rushabh Mehtad40e6612017-01-10 14:46:45 +053099
Anand Doshie3bd78e2016-04-22 18:53:21 +0530100}
101
102// order.html
103.transaction-subheading {
104 .indicator {
105 font-weight: inherit;
106 color: @text-muted;
107 }
108}
109
110.order-container {
111 margin: 50px 0px;
112
113 .order-item-header .h6 {
114 padding: 7px 15px;
115 }
116
117 .order-items {
118 margin: 30px 0px 0px;
119 }
120
121 .order-item-table {
122 margin: 0px -15px;
123 }
124
125 .order-item-header {
126 border-bottom: 1px solid #d1d8dd;
127 }
128
129 .order-image-col {
130 padding-right: 0px;
131 }
132
133 .order-image {
134 max-width: 55px;
135 max-height: 55px;
136 margin-top: -5px;
137 }
138
139 .order-taxes {
140 margin-top: 30px;
141
142 .row {
143 margin-top: 15px;
144 }
145 }
146
147 .tax-grand-total-row {
Anand Doshie3bd78e2016-04-22 18:53:21 +0530148 padding-top: 15px;
Rushabh Mehtaac123c52016-05-20 16:36:56 +0530149 padding-bottom: 30px;
Anand Doshie3bd78e2016-04-22 18:53:21 +0530150 }
Rushabh Mehta4b9238a2016-05-12 15:22:59 +0530151
152 .tax-grand-total {
153 display: inline-block;
154 font-size: 16px;
155 font-weight: bold;
156 margin-top: 5px;
157 }
Anand Doshie3bd78e2016-04-22 18:53:21 +0530158}
159
Kanchan Chauhan239b3512016-05-02 11:43:44 +0530160.cart-container {
161 margin: 50px 0px;
Rushabh Mehtab6bca562016-09-13 14:37:09 +0530162
Kanchan Chauhanc8d47da2016-06-22 15:46:38 +0530163 .checkout {
164 margin-bottom:15px;
165 }
Kanchan Chauhan239b3512016-05-02 11:43:44 +0530166
167 .cart-item-header .h6 {
168 padding: 7px 15px;
169 }
170
171 .cart-items {
172 margin: 30px 0px 0px;
173 }
174
175 .cart-item-table {
176 margin: 0px -15px;
177 }
178
179 .cart-item-header {
180 border-bottom: 1px solid #d1d8dd;
181 }
182
183 .cart-image-col {
184 padding-right: 0px;
185 }
186
187 .cart-image {
188 max-width: 55px;
189 max-height: 55px;
190 margin-top: -5px;
191 }
192
193 .cart-taxes {
194 margin-top: 30px;
195
196 .row {
197 margin-top: 15px;
198 }
199 }
200
201 .tax-grand-total-row {
202 border-top: 1px solid @border-color;
203 padding-top: 15px;
204 }
Rushabh Mehta4b9238a2016-05-12 15:22:59 +0530205
Kanchan Chauhan239b3512016-05-02 11:43:44 +0530206 .cart-addresses {
207 margin-top: 50px;
208 }
209}
210
Kanchan Chauhanc8d47da2016-06-22 15:46:38 +0530211.cart-items-dropdown .cart-dropdown,
Kanchan Chauhan239b3512016-05-02 11:43:44 +0530212.item_name_dropdown {
Kanchan Chauhanc8d47da2016-06-22 15:46:38 +0530213 display: none;
Rushabh Mehta4b9238a2016-05-12 15:22:59 +0530214
Kanchan Chauhan239b3512016-05-02 11:43:44 +0530215}
Rushabh Mehta4b9238a2016-05-12 15:22:59 +0530216
Kanchan Chauhanc8d47da2016-06-22 15:46:38 +0530217.cart-dropdown-container {
218 width: 400px;
219 padding: 15px;
Rushabh Mehtab6bca562016-09-13 14:37:09 +0530220
Kanchan Chauhan239b3512016-05-02 11:43:44 +0530221 .item-price {
222 display: block !important;
223 padding-bottom: 10px;
224 }
Rushabh Mehta4b9238a2016-05-12 15:22:59 +0530225
Kanchan Chauhan239b3512016-05-02 11:43:44 +0530226 .cart-item-header {
227 border-bottom: 1px solid #d1d8dd;
228 }
Rushabh Mehtab6bca562016-09-13 14:37:09 +0530229
Kanchan Chauhanc8d47da2016-06-22 15:46:38 +0530230 .cart-items-dropdown {
231 max-height: 350px;
Kanchan Chauhanc8d47da2016-06-22 15:46:38 +0530232 }
Rushabh Mehtab6bca562016-09-13 14:37:09 +0530233
Kanchan Chauhanc8d47da2016-06-22 15:46:38 +0530234 .cart-items-dropdown .cart-dropdown {
Kanchan Chauhan239b3512016-05-02 11:43:44 +0530235 display:block;
236 margin-top:15px;
237 }
Rushabh Mehta4b9238a2016-05-12 15:22:59 +0530238
Kanchan Chauhan239b3512016-05-02 11:43:44 +0530239 .item_name_dropdown {
240 display:block;
241 }
Rushabh Mehta4b9238a2016-05-12 15:22:59 +0530242
Kanchan Chauhan239b3512016-05-02 11:43:44 +0530243 .item-description,
244 .cart-items .checkout,
245 .item_name_and_description {
246 display: none;
247 }
Rushabh Mehta4b9238a2016-05-12 15:22:59 +0530248
Kanchan Chauhan239b3512016-05-02 11:43:44 +0530249 .checkout-btn {
Kanchan Chauhanb3573a82016-05-09 12:30:58 +0530250 padding-top:25px;
Kanchan Chauhan239b3512016-05-02 11:43:44 +0530251 }
252 .col-name-description {
253 margin-bottom:8px;
254 }
Kanchan Chauhanc8d47da2016-06-22 15:46:38 +0530255}
Rushabh Mehta4b9238a2016-05-12 15:22:59 +0530256
Kanchan Chauhanc8d47da2016-06-22 15:46:38 +0530257.number-spinner {
258 width:100px;
259 margin-top:5px;
260}
261
262.cart-btn {
263 border-color: #ccc;
264}
265.cart-qty {
266 text-align:center;
Kanchan Chauhan239b3512016-05-02 11:43:44 +0530267}
268
Anand Doshia6f48682016-04-09 22:25:21 +0530269.product-list-link {
270 .row {
271 border-bottom: 1px solid @light-border-color;
272 }
273
274 .row:hover {
275 background-color: @light-bg;
276 }
277
278 .row > div {
279 padding-top: 15px;
280 padding-bottom: 15px;
281 }
282}
283
284.product-list-link:first-child .row {
285 border-top: 1px solid @light-border-color;
286}
287
288.item-group-nav-buttons {
289 margin-top: 15px;
290}
291
Rushabh Mehtaac123c52016-05-20 16:36:56 +0530292.footer-subscribe {
293 .btn-default {
294 background-color: transparent;
295 border: 1px solid @border-color;
296 }
297}
298
Anand Doshia6f48682016-04-09 22:25:21 +0530299@media (min-width: 992px) {
300 .footer-subscribe {
301 max-width: 350px;
302 }
303}
Kanchan Chauhan239b3512016-05-02 11:43:44 +0530304
305.item-group-content {
306 margin-top: 30px;
307}
308
Rushabh Mehta4b9238a2016-05-12 15:22:59 +0530309.product-image-img {
Kanchan Chauhan239b3512016-05-02 11:43:44 +0530310 border: 1px solid @light-border-color;
311 border-radius: 3px;
312}
313
Rushabh Mehta4b9238a2016-05-12 15:22:59 +0530314.product-text {
Kanchan Chauhan239b3512016-05-02 11:43:44 +0530315 border-top: 1px solid @light-border-color;
316 padding: 15px;
317 word-wrap: break-word;
318 height: 75px;
319}
320
Rushabh Mehta4b9238a2016-05-12 15:22:59 +0530321.product-image-wrapper {
322 padding-bottom: 40px;
Kanchan Chauhanc8d47da2016-06-22 15:46:38 +0530323}