"Product cards list group"
Bootstrap 3.3.0 Snippet by kmwebdev

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="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.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 ---------->
<section>
<div class="container-fluid">
<div class="row">
<div class="list-group">
<a href="" class="list-group-item active blue-bg">
<div class="row">
<div class="col-sm-4"><span class="glyphicon glyphicon-cloud pull-right" aria-hidden="true"></span></div>
<div class="col-sm-4">
<h4>
PRODUCT NUMBER ONE
</h4>
<p>Product Description</p>
</div>
</div>
</a>
<div class="white-bg">
<button class="btn button-default custom-button" href="">BUY NOW</button>
</div>
</div>
<div class="list-group ">
<a href="" class="list-group-item active purple-bg">
<div class="row purple-bg">
<div class="col-sm-4"><span class="glyphicon glyphicon-music pull-right" aria-hidden="true"></span></div>
<div class="col-sm-4">
<h4>
PRODUCT NUMBER ONE
</h4>
<p>Product Description</p>
</div>
</div>
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
@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Inconsolata|Nunito+Sans|Nunito:800|Pacifico');
html {
font-family: 'Nunito Sans', sans-serif;
font-family: 'Pacifico', cursive;
font-family: 'Inconsolata', monospace;
font-family: 'Nunito', sans-serif;
}
h4 {
font-family: 'Nunito Sans', sans-serif;
}
a {
border-color: transparent;
background-color: transparent;
}
p {
font-family: 'Pacifico', cursive;
}
.list-group {
display: inline-block;
margin: 1em;
width: 95%;
box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.3);
}
.list-group-item {
margin: auto;
display: block;
width: 100%;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: