"Real Estate Media Listings"
Bootstrap 3.1.0 Snippet by moakdesigns

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.1.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.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="container-fluid" style="background-color:#e8e8e8">
<div class="container container-pad" id="property-listings">
<div class="row">
<div class="col-md-12">
<h1>Million Dollar Home Listings</h1>
<p>A snippet I recently used to display homes for a local brokerage. Focused more on images when accessed through mobile</p>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<!-- Begin Listing: 609 W GRAVERS LN-->
<div class="brdr bgc-fff pad-10 box-shad btm-mrg-20 property-listing">
<div class="media">
<a class="pull-left" href="#" target="_parent">
<img alt="image" class="img-responsive" src="http://images.prd.mris.com/image/V2/1/Yu59d899Ocpyr_RnF0-8qNJX1oYibjwp9TiLy-bZvU9vRJ2iC1zSQgFwW-fTCs6tVkKrj99s7FFm5Ygwl88xIA.jpg"></a>
<div class="clearfix visible-sm"></div>
<div class="media-body fnt-smaller">
<a href="#" target="_parent"></a>
<h4 class="media-heading">
<a href="#" target="_parent">$1,975,000 <small class="pull-right">609 W Gravers Ln</small></a></h4>
<ul class="list-inline mrg-0 btm-mrg-10 clr-535353">
<li>4,820 SqFt</li>
<li style="list-style: none">|</li>
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
/**** BASE ****/
body {
color: #888;
}
a {
color: #03a1d1;
text-decoration: none!important;
}
/**** LAYOUT ****/
.list-inline>li {
padding: 0 10px 0 0;
}
.container-pad {
padding: 30px 15px;
}
/**** MODULE ****/
.bgc-fff {
background-color: #fff!important;
}
.box-shad {
-webkit-box-shadow: 1px 1px 0 rgba(0,0,0,.2);
box-shadow: 1px 1px 0 rgba(0,0,0,.2);
}
.brdr {
border: 1px solid #ededed;
}
/* Font changes */
.fnt-smaller {
font-size: .9em;
}
.fnt-lighter {
color: #bbb;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: