"card shop"
Bootstrap 3.0.0 Snippet by evarevirus

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
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="block">
<div class="top">
<ul>
<li><a href="#"><i class="fa fa-star-o" aria-hidden="true"></i></a></li>
<li><span class="converse">Converse</span></li>
<li><a href="#"><i class="fa fa-shopping-basket" aria-hidden="true"></i>
</a></li>
</ul>
</div>
<div class="middle">
<img src="https://www.converse.com/on/demandware.static/-/Sites-ConverseMaster/default/dw48f5fc3c/images/hi-res/M9621C_standard.png?sw=580&sh=580&sm=fit" alt="pic" />
</div>
<div class="bottom">
<div class="heading">Chuck Taylor All Star Classic Colours</div>
<div class="info">Classic red converse edition</div>
<div class="style">Color: Red / Style: M9621C</div>
<div class="price">$50.00 <span class="old-price">$75.00</span></div>
</div>
</div>
<div class="block">
<div class="top">
<ul>
<li><a href="#"><i class="fa fa-star-o" aria-hidden="true"></i></a></li>
<li><span class="converse">Converse</span></li>
<li><a href="#"><i class="fa fa-shopping-basket" aria-hidden="true"></i>
</a></li>
</ul>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
* {
font-family: "Roboto";
list-style: none;
margin: 0;
padding: 0;
text-decoration: none;
letter-spacing: 1px;
box-sizing: border-box;
}
body {
background: #f9fafa;
padding: 20px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.block {
margin: 20px;
border-radius: 4px;
width: 280px;
min-height: 430px;
background: #fff;
padding: 23px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
box-shadow: 0 2px 55px rgba(0,0,0,0.1);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: