Subversion Repositories SmartDukaan

Rev

Rev 15961 | Rev 15963 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
10582 lgm 1
@import "common.less";
2
 
3
.cart-head{
4
  padding:7px 5px;
5
  margin-top:1px;
6
  background:darken(@list-color2,5%);
7
  > div:nth-of-type(1){
8
    .font(1.8em);
9
    text-transform:capitalize;
10
    color:@grey;
11
    font-weight:bold;
12
  }
13
  >div:nth-of-type(2){
14
    margin-top:3px;
15
    input{
16
      color:@grey;
17
      appearance:none;
18
      -webkit-appearance:none;
19
      .float(left);
20
      width:55%;
21
      border:@list-color2 solid 1px;
22
      padding:5px 4px;
23
      height:30px;
24
      .boxsize;
25
      .font(1.2em);
26
    }
27
    >div{
28
      .font(1.4em);
29
      .float(right);
30
      width:40%;
10846 lgm 31
      background:@sub-list;
10582 lgm 32
      color:@white;
33
      height:30px;
34
      line-height:30px;
35
      text-align:center;
36
    }
37
  }
38
 
39
}
40
 
41
.added-pd-hldr{
42
  padding: 8px;
43
  background: @list-color2;
44
  margin-top: 1px;
45
}
46
 
47
.added-pd{
48
  background:@white;
49
  border:@list-color2 solid 1px;
50
  margin-bottom:8px;
51
  border-left:none;
52
  border-right:none;
53
  .pd-img{
54
    .float(left);
55
    width:30%;
56
    height:100px;
57
    .boxsize;
58
    //border-right:@list-color2 solid 1px;
59
  }
60
  .pd-info{
61
    .float(left);
62
    width:70%;
63
    .pd-name{
64
      position:relative;
65
      padding:10px;
11227 lgm 66
      min-height: 100px;
10582 lgm 67
      .boxsize;
68
      >div:nth-of-type(1){
69
        .font(1.4em);
70
        color:@grey;
71
        white-space: nowrap;
72
        overflow: hidden;
73
        text-overflow: ellipsis;
10846 lgm 74
        padding-right:18px;
10582 lgm 75
      }
76
      > div.spec{
77
        padding-top:1px;
78
        .font(1.2em);
79
        color:@grey;
80
      }
81
      .cancel{
82
        position:absolute;
83
        width:20px;
84
        height:20px;
85
        right:5px;
86
        top:5px;
87
        z-index:2;
88
        background:url('../images/cancel.png')no-repeat center center;
89
        background-size:contain;
90
      }
91
    }
92
 
93
  }
94
 
11885 anikendra 95
.dealdiv{
96
	color: tomato !important;
97
	font-style: oblique !important;
98
}
99
 
100
.pd-price{
10582 lgm 101
      border-top:@list-color2 solid 1px;
102
      >div{
103
        .float(left);
104
        .boxsize;
105
        padding:4px;
106
        text-align:center;
107
        color:@grey;
108
        span{
109
          display:block;
110
          padding:0 0 1px;
111
        }
112
        >div{
113
          padding-top:8px;
114
        }
115
      }
116
      > span{
117
        float:left;
118
        width:1%;
119
        padding-top: 28px;
120
      }
121
      > div:nth-of-type(1){
122
        div{
123
          .font(1.2em);
124
        }
125
      }
126
      > div:nth-of-type(2){
15953 manish.sha 127
        input{
10582 lgm 128
          appearance: none;
129
          -webkit-appearance: none;
130
          width: 60%;
131
          border: #F2F3EF solid 1px;
132
          text-align: center;
133
          padding: 8px 3px;
134
          .boxsize;
135
          color:@grey;
136
          background:@white;
15933 manish.sha 137
        }
15954 manish.sha 138
        .confirm-qty{
15960 manish.sha 139
          .font(1.0em);
140
	      .float(center);
15961 manish.sha 141
	      width:30%;
15933 manish.sha 142
	      background:@sub-list;
143
	      color:@white;
144
	      text-align:center;
10582 lgm 145
        }     
146
      }
147
      >div:nth-of-type(3){
148
          div{
149
            padding-top:7px;
150
            .font(1.4em);
10846 lgm 151
             color:@grey;
10582 lgm 152
             font-weight:bold;
153
          }
154
      }
155
    }
156
}
157
.insure{
158
  border-top:@list-color2 solid 1px;
159
  .insure-hldr{
160
    padding:5px;
161
    img{
162
      width:20px;
163
      .float(left);
164
      margin:5px 16px 0 10px;
165
    }
166
    label{
167
      .font(1.2em);
168
    }
169
  }
170
  >div:nth-of-type(2){
171
    //border-top:@list-color2 solid 1px;
172
    padding:5px 5px 5px 50px;
173
    label{
174
      display:block;
175
 
176
      padding-top:5px;
177
      .font(1.2em);
178
    }
179
  }
180
  .one-assist{
181
    border-top:@list-color2 solid 1px;
182
    padding:5px;
183
    img{
184
      width:40px;
185
      .float(left);
186
      margin:5px 5px 0 0;
187
    }
188
    label{
189
      .font(1.2em);
190
    }
191
  }
192
}
193
 
194
input[type="checkbox"]{
195
  .float(left);
196
  appearance:none;
197
  -webkit-appearance:none;
198
  width:25px;
199
  height:25px;
200
  background:url('../images/checkbox.png')no-repeat center center;
201
  background-size:contain;
202
  margin-right:5px;
203
}
204
input[type="checkbox"]:checked{
205
  background:url('../images/checkbox_selected.png')no-repeat center center;
206
  background-size:contain;
207
}
208
 
209
.sub-total{
210
  .sub-total-head{
211
    .font(1.4em);
212
    padding:6px;
10846 lgm 213
    background:@list-color1;
214
    color:@grey;
10582 lgm 215
    text-align:center;
216
    text-transform:uppercase;
217
  }
218
  .left{
219
    .float(left);
220
    width:40%;
221
    .boxsize;
222
    padding:7px;
223
    color:@grey;
224
    border-bottom:@list-color2 solid 1px;
225
    border-right:@list-color2 solid 1px;
226
    text-align:right;
227
    .font(1.4em);
228
  }
229
  .right{
230
    .float(right);
231
    padding:7px;
232
    width:60%;
233
    .boxsize;
234
    color:@grey;
235
    border-bottom:@list-color2 solid 1px;
236
    text-align:right;
237
    .font(1.4em);
238
  }
239
}
240
 
241
.checkout-hldr{
242
  background:@list-color2;
243
  padding:10px;
244
  .checkout-btn{
245
    background:@orange;
246
    text-transform:uppercase;
247
    color:@white;
248
    padding:10px;
249
    text-align:center;
250
    .font(1.6em);
251
  }
252
}
253
 
254
.add-coupon{
255
  border:@list-color1 solid 1px;
256
  background:@white;
257
  >div:nth-of-type(1){
258
    padding:5px;
259
  display:block;
260
  border:red dotted 1px;
261
  background:@list-color2;
262
  color:red;
263
  .font(1.4em);
264
  margin:10px;
265
  }
266
  >div:nth-of-type(2){
15952 manish.sha 267
    padding:10px 5px;
268
    background:@grey;
269
    color:@white;
270
    .font(1.4em);
271
  }
272
  >div:nth-of-type(3){
10582 lgm 273
    padding:10px 5px 10px;
274
    input{
275
    color:@grey;
276
      appearance:none;
277
      -webkit-appearance:none;
278
      .float(left);
279
      .boxsize;
280
      width:55%;
281
      border:@list-color2 solid 1px;
282
      padding:0 4px;
283
      height:30px;
284
      line-height:30px;
285
  }
286
  .apply-coupon{
287
    .font(1.4em);
288
      .float(right);
289
      width:40%;
15961 manish.sha 290
      background:@extgrey;
15933 manish.sha 291
      color:@black;
10582 lgm 292
      height:30px;
293
      line-height:30px;
294
      text-align:center;
295
  }
296
 }
297
}
298
.remove-coupon{
299
    .font(1.4em);
300
      background:@grey;
301
      color:@white;
302
      height:30px;
303
      line-height:30px;
304
      text-align:center;
305
  }
306
 
307
.cart-cont{
308
}
309
 
310
.empty-cart{
311
  height: 100px;
11094 lgm 312
  background: url('../images/empty-cart.png') no-repeat center center;
313
  background-size: contain;
314
  margin-top: 20%;
10582 lgm 315
 
316
}
317
 
318
.empty-msg{
319
  .font(1.6em);
320
  margin:10px 0;
321
  color:@grey;
322
}
323
 
324
.shop-more{
325
    .font(1.6em);
326
    font-weight:bold;
327
      background:@ltblue;
328
      color:@white;
329
      padding:8px 0;
330
      text-align:center;
331
      margin:10px auto;
332
      width:70%;
333
      max-width:260px;
334
  }
335
 
336
/*----------------------error-msg---------------------------*/
337
 
338
.error_msg{
339
  padding:5px;
340
  display:block;
341
  border:red dotted 1px;
342
  background:@list-color2;
343
  color:red;
344
  .font(1.4em);
345
  margin:10px;
346
}
347
 
11929 anikendra 348
#discount{
349
	.left{
350
		color:tomato !important;
351
	}
352
	.right{
353
		color:tomato !important;
354
	}
355
}