-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathecommerce-product-card-in-detail-template-with-bootstrap4.html
408 lines (367 loc) · 14.7 KB
/
ecommerce-product-card-in-detail-template-with-bootstrap4.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
<!doctype html>
<html>
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link href='https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css' rel='stylesheet'>
<link href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.0.3/css/font-awesome.css' rel='stylesheet'>
<style>
body {
background-color: #eee
}
.container {
width: 900px
}
.card {
background-color: #fff;
border: none;
border-radius: 10px;
width: 190px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19)
}
.image-container {
position: relative
}
.thumbnail-image {
border-radius: 10px !important
}
.discount {
background-color: red;
padding-top: 1px;
padding-bottom: 1px;
padding-left: 4px;
padding-right: 4px;
font-size: 10px;
border-radius: 6px;
color: #fff
}
.wishlist {
height: 25px;
width: 25px;
background-color: #eee;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19)
}
.first {
position: absolute;
width: 100%;
padding: 9px
}
.dress-name {
font-size: 13px;
font-weight: bold;
width: 75%
}
.new-price {
font-size: 13px;
font-weight: bold;
color: red
}
.old-price {
font-size: 8px;
font-weight: bold;
color: grey
}
.btn {
width: 14px;
height: 14px;
border-radius: 50%;
padding: 3px
}
.creme {
background-color: #fff;
border: 2px solid grey
}
.creme:hover {
border: 3px solid grey
}
.creme:focus {
background-color: grey
}
.red {
background-color: #fff;
border: 2px solid red
}
.red:hover {
border: 3px solid red
}
.red:focus {
background-color: red
}
.blue {
background-color: #fff;
border: 2px solid #40C4FF
}
.blue:hover {
border: 3px solid #40C4FF
}
.blue:focus {
background-color: #40C4FF
}
.darkblue {
background-color: #fff;
border: 2px solid #01579B
}
.darkblue:hover {
border: 3px solid #01579B
}
.darkblue:focus {
background-color: #01579B
}
.yellow {
background-color: #fff;
border: 2px solid #FFCA28
}
.yellow:hover {
border-radius: 3px solid #FFCA28
}
.yellow:focus {
background-color: #FFCA28
}
.item-size {
width: 15px;
height: 15px;
border-radius: 50%;
background: #fff;
border: 1px solid grey;
color: grey;
font-size: 10px;
text-align: center;
align-items: center;
display: flex;
justify-content: center
}
.rating-star {
font-size: 10px !important
}
.rating-number {
font-size: 10px;
color: grey
}
.buy {
font-size: 12px;
color: purple;
font-weight: 500
}
.voutchers {
background-color: #fff;
border: none;
border-radius: 10px;
width: 190px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
overflow: hidden
}
.voutcher-divider {
display: flex
}
.voutcher-left {
width: 60%
}
.voutcher-name {
color: grey;
font-size: 9px;
font-weight: 500
}
.voutcher-code {
color: red;
font-size: 11px;
font-weight: bold
}
.voutcher-right {
width: 40%;
background-color: purple;
color: #fff
}
.discount-percent {
font-size: 12px;
font-weight: bold;
position: relative;
top: 5px
}
.off {
font-size: 14px;
position: relative;
bottom: 5px
}
</style>
</head>
<body>
<div class="container mt-5">
<div class="row">
<div class="col mt-2">
<div class="card">
<div class="image-container">
<div class="first">
<div class="d-flex justify-content-between align-items-center"> <span
class="discount">-25%</span> <span class="wishlist"><i
class="fa fa-heart-o"></i></span> </div>
</div> <img src="https://i.imgur.com/8JIWpnw.jpg" class="img-fluid rounded thumbnail-image">
</div>
<div class="product-detail-container p-2">
<div class="d-flex justify-content-between align-items-center">
<h5 class="dress-name">White traditional long dress</h5>
<div class="d-flex flex-column mb-2"> <span class="new-price">$3.99</span> <small
class="old-price text-right">$5.99</small> </div>
</div>
<div class="d-flex justify-content-between align-items-center pt-1">
<div class="color-select d-flex "> <input type="button" name="grey" class="btn creme">
<input type="button" name="red" class="btn red ml-2"> <input type="button" name="blue"
class="btn blue ml-2"> </div>
<div class="d-flex "> <span class="item-size mr-2 btn" type="button">S</span> <span
class="item-size mr-2 btn" type="button">M</span> <span class="item-size btn"
type="button">L</span> </div>
</div>
<div class="d-flex justify-content-between align-items-center pt-1">
<div> <i class="fa fa-star-o rating-star"></i> <span class="rating-number">4.8</span> </div>
<span class="buy">BUY +</span>
</div>
</div>
</div>
<div class="mt-3">
<div class="card voutchers">
<div class="voutcher-divider">
<div class="voutcher-left text-center"> <span class="voutcher-name">Monday Happy</span>
<h5 class="voutcher-code">#MONHPY</h5>
</div>
<div class="voutcher-right text-center border-left">
<h5 class="discount-percent">20%</h5> <span class="off">Off</span>
</div>
</div>
</div>
</div>
</div>
<div class="col mt-2">
<div class="card">
<div class="image-container">
<div class="first">
<div class="d-flex justify-content-between align-items-center"> <span
class="discount">-25%</span> <span class="wishlist"><i
class="fa fa-heart-o"></i></span> </div>
</div> <img src="https://i.imgur.com/PtepOpe.jpg" class="img-fluid rounded thumbnail-image">
</div>
<div class="product-detail-container p-2">
<div class="d-flex justify-content-between align-items-center">
<h5 class="dress-name">Long sleeve denim jacket</h5>
<div class="d-flex flex-column mb-2"> <span class="new-price">$3.99</span> <small
class="old-price text-right">$5.99</small> </div>
</div>
<div class="d-flex justify-content-between align-items-center pt-1">
<div class="color-select d-flex "> <input type="button" name="grey" class="btn creme">
<input type="button" name="darkblue" class="btn darkblue ml-2"> </div>
<div class="d-flex "> <span class="item-size mr-2 btn" type="button">S</span> <span
class="item-size mr-2 btn" type="button">M</span> <span class="item-size btn"
type="button">L</span> </div>
</div>
<div class="d-flex justify-content-between align-items-center pt-1">
<div> <i class="fa fa-star-o rating-star"></i> <span class="rating-number">4.8</span> </div>
<span class="buy">BUY +</span>
</div>
</div>
</div>
<div class="mt-3">
<div class="card voutchers">
<div class="voutcher-divider">
<div class="voutcher-left text-center"> <span class="voutcher-name">Payday Surprise</span>
<h5 class="voutcher-code">#SRPSPYDY</h5>
</div>
<div class="voutcher-right text-center border-left">
<h5 class="discount-percent">20%</h5> <span class="off">Off</span>
</div>
</div>
</div>
</div>
</div>
<div class="col mt-2">
<div class="card">
<div class="image-container">
<div class="first">
<div class="d-flex justify-content-between align-items-center"> <span
class="discount">-25%</span> <span class="wishlist"><i
class="fa fa-heart-o"></i></span> </div>
</div> <img src="https://i.imgur.com/ePJKs8Q.jpg" class="img-fluid rounded thumbnail-image">
</div>
<div class="product-detail-container p-2">
<div class="d-flex justify-content-between ">
<h5 class="dress-name">Hush Puppies</h5>
<div class="d-flex flex-column mb-2"> <span class="new-price">$3.99</span> <small
class="old-price text-right">$5.99</small> </div>
</div>
<div class="d-flex justify-content-between align-items-center pt-1">
<div class="color-select d-flex "> <input type="button" name="grey" class="btn creme">
<input type="button" name="yellow" class="btn yellow ml-2"> <input type="button"
name="blue" class="btn blue ml-2"> </div>
<div class="d-flex "> <span class="item-size mr-2 btn" type="button">S</span> <span
class="item-size mr-2 btn" type="button">M</span> <span class="item-size btn"
type="button">L</span> </div>
</div>
<div class="d-flex justify-content-between align-items-center pt-1">
<div> <i class="fa fa-star-o rating-star"></i> <span class="rating-number">4.2</span> </div>
<span class="buy">BUY +</span>
</div>
</div>
</div>
<div class="mt-3">
<div class="card voutchers">
<div class="voutcher-divider">
<div class="voutcher-left text-center"> <span class="voutcher-name">First order</span>
<h5 class="voutcher-code">#HPYFRST</h5>
</div>
<div class="voutcher-right text-center border-left">
<h5 class="discount-percent">20%</h5> <span class="off">Off</span>
</div>
</div>
</div>
</div>
</div>
<div class="col mt-2">
<div class="card">
<div class="image-container">
<div class="first">
<div class="d-flex justify-content-between align-items-center"> <span
class="discount">-25%</span> <span class="wishlist"><i
class="fa fa-heart-o"></i></span> </div>
</div> <img src="https://i.imgur.com/snffLH3.jpg" class="img-fluid rounded thumbnail-image">
</div>
<div class="product-detail-container p-2">
<div class="d-flex justify-content-between ">
<h5 class="dress-name">Athens skirt </h5>
<div class="d-flex flex-column mb-2"> <span class="new-price">$3.99</span> <small
class="old-price text-right">$5.99</small> </div>
</div>
<div class="d-flex justify-content-between align-items-center pt-1">
<div class="color-select d-flex "> <input type="button" name="grey" class="btn creme">
<input type="button" name="red" class="btn red ml-2"> <input type="button" name="blue"
class="btn blue ml-2"> </div>
<div class="d-flex "> <span class="item-size mr-2 btn" type="button">S</span> <span
class="item-size mr-2 btn" type="button">M</span> <span class="item-size btn"
type="button">L</span> </div>
</div>
<div class="d-flex justify-content-between align-items-center pt-1">
<div> <i class="fa fa-star-o rating-star"></i> <span class="rating-number">3.8</span> </div>
<span class="buy">BUY +</span>
</div>
</div>
</div>
<div class="mt-3">
<div class="card voutchers">
<div class="voutcher-divider">
<div class="voutcher-left text-center"> <span class="voutcher-name">Vegetarian Food</span>
<h5 class="voutcher-code">#VEGANLOVE</h5>
</div>
<div class="voutcher-right text-center border-left">
<h5 class="discount-percent">20%</h5> <span class="off">Off</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script type='text/javascript' src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js'></script>
<script type='text/javascript' src='https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js'></script>
<script type='text/javascript' src='https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js'></script>
</body>
</html>