"Timeline"
Bootstrap 3.0.0 Snippet by Checko

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<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="container">
<div class="row">
<div class="col-sm-6">
<div class="item">
<span class="glyphicon glyphicon-ok"></span>
<div>Item 1</div>
<p>
Trifecta and mug qui as bar coffee. Caramelization, and, aroma, plunger pot filter coffee strong aroma seasonal. So barista plunger pot steamed, grounds redeye.
</p>
</div>
</div>
</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
.item {
position: relative;
margin: 15px;
border-left: 3px dashed antiquewhite;
padding: 10px 40px;
}
.item > span {
position: absolute;
width: 40px;
height: 40px;
font-size: 20px;
text-align: center;
line-height: 40px;
border-radius: 100%;
left: -20px;
top: 0;
background: antiquewhite;
}
.item div {
font-size: 18px;
font-weight: bold;
}
.item p {
margin-top: 15px;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: