"categories"
Bootstrap 3.0.0 Snippet by evarevirus

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<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 ---------->
<ul class="homes-list">
<li class="single-storey">Single Storey</li>
<li class="double-storey">Double Storey</li>
<li class="house-and-land">House and Land</li>
<li class="develop-subdivide">Develop and Subdivide</li>
<li class="land-estate">Land Estates</li>
<li class="apartments">Apartments</li>
<li class="custom-built">Custom Built Homes</li>
<li class="luxury-homes">Luxury Homes</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
body {
background: #212C38;
padding: 100px;
}
.homes-list {
margin: 0 auto;
list-style-type: none;
width: 960px;
text-align: center;
}
.homes-list li {
padding: 10px;
font-family: helvetica;
color: #fff;
font-weight: lighter;
font-size: 28px;
line-height: 28px;
margin: 2px;
padding: 20px 30px;
float: left;
cursor: pointer;
opacity: 0.85;
transition: opacity 0.1s ease, padding 0.1s ease;
}
.homes-list li:after {
overflow: hidden;
content: "20 homes";
display: inline-block;
vertical-align: middle;
font-size: 14px;
font-weight: bold;
margin-left: 0;
width: 0;
opacity: 0;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: