Subversion Repositories SmartDukaan

Rev

Rev 15952 | Rev 15954 | 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
        width:33%;
105
        .boxsize;
106
        padding:4px;
107
        text-align:center;
108
        color:@grey;
109
        span{
110
          display:block;
111
          padding:0 0 1px;
112
        }
113
        >div{
114
          padding-top:8px;
115
        }
116
      }
117
      > span{
118
        float:left;
119
        width:1%;
120
        padding-top: 28px;
121
      }
122
      > div:nth-of-type(1){
123
        div{
124
          .font(1.2em);
125
        }
126
      }
127
      > div:nth-of-type(2){
15953 manish.sha 128
        input{
10582 lgm 129
          appearance: none;
130
          -webkit-appearance: none;
131
          width: 60%;
132
          border: #F2F3EF solid 1px;
133
          text-align: center;
134
          padding: 8px 3px;
135
          .boxsize;
136
          color:@grey;
137
          background:@white;
15933 manish.sha 138
        }
15953 manish.sha 139
        div{
15933 manish.sha 140
          .font(1.4em);
141
	      .float(right);
142
	      width:40%;
143
	      background:@sub-list;
144
	      color:@white;
145
	      text-align:center;
10582 lgm 146
        }     
147
      }
148
      >div:nth-of-type(3){
149
          div{
150
            padding-top:7px;
151
            .font(1.4em);
10846 lgm 152
             color:@grey;
10582 lgm 153
             font-weight:bold;
154
          }
155
      }
156
    }
157
}
158
.insure{
159
  border-top:@list-color2 solid 1px;
160
  .insure-hldr{
161
    padding:5px;
162
    img{
163
      width:20px;
164
      .float(left);
165
      margin:5px 16px 0 10px;
166
    }
167
    label{
168
      .font(1.2em);
169
    }
170
  }
171
  >div:nth-of-type(2){
172
    //border-top:@list-color2 solid 1px;
173
    padding:5px 5px 5px 50px;
174
    label{
175
      display:block;
176
 
177
      padding-top:5px;
178
      .font(1.2em);
179
    }
180
  }
181
  .one-assist{
182
    border-top:@list-color2 solid 1px;
183
    padding:5px;
184
    img{
185
      width:40px;
186
      .float(left);
187
      margin:5px 5px 0 0;
188
    }
189
    label{
190
      .font(1.2em);
191
    }
192
  }
193
}
194
 
195
input[type="checkbox"]{
196
  .float(left);
197
  appearance:none;
198
  -webkit-appearance:none;
199
  width:25px;
200
  height:25px;
201
  background:url('../images/checkbox.png')no-repeat center center;
202
  background-size:contain;
203
  margin-right:5px;
204
}
205
input[type="checkbox"]:checked{
206
  background:url('../images/checkbox_selected.png')no-repeat center center;
207
  background-size:contain;
208
}
209
 
210
.sub-total{
211
  .sub-total-head{
212
    .font(1.4em);
213
    padding:6px;
10846 lgm 214
    background:@list-color1;
215
    color:@grey;
10582 lgm 216
    text-align:center;
217
    text-transform:uppercase;
218
  }
219
  .left{
220
    .float(left);
221
    width:40%;
222
    .boxsize;
223
    padding:7px;
224
    color:@grey;
225
    border-bottom:@list-color2 solid 1px;
226
    border-right:@list-color2 solid 1px;
227
    text-align:right;
228
    .font(1.4em);
229
  }
230
  .right{
231
    .float(right);
232
    padding:7px;
233
    width:60%;
234
    .boxsize;
235
    color:@grey;
236
    border-bottom:@list-color2 solid 1px;
237
    text-align:right;
238
    .font(1.4em);
239
  }
240
}
241
 
242
.checkout-hldr{
243
  background:@list-color2;
244
  padding:10px;
245
  .checkout-btn{
246
    background:@orange;
247
    text-transform:uppercase;
248
    color:@white;
249
    padding:10px;
250
    text-align:center;
251
    .font(1.6em);
252
  }
253
}
254
 
255
.add-coupon{
256
  border:@list-color1 solid 1px;
257
  background:@white;
258
  >div:nth-of-type(1){
259
    padding:5px;
260
  display:block;
261
  border:red dotted 1px;
262
  background:@list-color2;
263
  color:red;
264
  .font(1.4em);
265
  margin:10px;
266
  }
267
  >div:nth-of-type(2){
15952 manish.sha 268
    padding:10px 5px;
269
    background:@grey;
270
    color:@white;
271
    .font(1.4em);
272
  }
273
  >div:nth-of-type(3){
10582 lgm 274
    padding:10px 5px 10px;
275
    input{
276
    color:@grey;
277
      appearance:none;
278
      -webkit-appearance:none;
279
      .float(left);
280
      .boxsize;
281
      width:55%;
282
      border:@list-color2 solid 1px;
283
      padding:0 4px;
284
      height:30px;
285
      line-height:30px;
286
  }
287
  .apply-coupon{
288
    .font(1.4em);
289
      .float(right);
290
      width:40%;
15933 manish.sha 291
      background:@extrgrey;
292
      color:@black;
10582 lgm 293
      height:30px;
294
      line-height:30px;
295
      text-align:center;
296
  }
297
 }
298
}
299
.remove-coupon{
300
    .font(1.4em);
301
      background:@grey;
302
      color:@white;
303
      height:30px;
304
      line-height:30px;
305
      text-align:center;
306
  }
307
 
308
.cart-cont{
309
}
310
 
311
.empty-cart{
312
  height: 100px;
11094 lgm 313
  background: url('../images/empty-cart.png') no-repeat center center;
314
  background-size: contain;
315
  margin-top: 20%;
10582 lgm 316
 
317
}
318
 
319
.empty-msg{
320
  .font(1.6em);
321
  margin:10px 0;
322
  color:@grey;
323
}
324
 
325
.shop-more{
326
    .font(1.6em);
327
    font-weight:bold;
328
      background:@ltblue;
329
      color:@white;
330
      padding:8px 0;
331
      text-align:center;
332
      margin:10px auto;
333
      width:70%;
334
      max-width:260px;
335
  }
336
 
337
/*----------------------error-msg---------------------------*/
338
 
339
.error_msg{
340
  padding:5px;
341
  display:block;
342
  border:red dotted 1px;
343
  background:@list-color2;
344
  color:red;
345
  .font(1.4em);
346
  margin:10px;
347
}
348
 
11929 anikendra 349
#discount{
350
	.left{
351
		color:tomato !important;
352
	}
353
	.right{
354
		color:tomato !important;
355
	}
356
}