"Two column timeline - not responsive"
Bootstrap 3.1.0 Snippet by alien

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">
<div class="page-header">
<h1 id="">Timeline</h1>
</div>
<div id="timeline"><div class="row timeline-movement timeline-movement-top">
<div class="timeline-badge timeline-future-movement">
<a href="#">
<span class="glyphicon glyphicon-plus"></span>
</a>
</div>
<div class="timeline-badge timeline-filter-movement">
<a href="#">
<span class="glyphicon glyphicon-time"></span>
</a>
</div>
</div>
<div class="row timeline-movement">
<div class="timeline-badge">
<span class="timeline-balloon-date-day">18</span>
<span class="timeline-balloon-date-month">APR</span>
</div>
<div class="col-sm-6 timeline-item">
<div class="row">
<div class="col-sm-11">
<div class="timeline-panel credits">
<ul class="timeline-panel-ul">
<li><span class="importo">Mussum ipsum cacilds</span></li>
<li><span class="causale">Lorem ipsum dolor sit amet, consectetur adipiscing elit. </span> </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
#timeline {
list-style: none;
position: relative;
}
#timeline:before {
top: 0;
bottom: 0;
position: absolute;
content: " ";
width: 2px;
background-color: #4997cd;
left: 50%;
margin-left: -1.5px;
}
#timeline .clearFix {
clear: both;
height: 0;
}
#timeline .timeline-badge {
color: #fff;
width: 50px;
height: 50px;
font-size: 1.2em;
text-align: center;
position: absolute;
top: 20px;
left: 50%;
margin-left: -25px;
background-color: #4997cd;
z-index: 100;
border-top-right-radius: 50%;
border-top-left-radius: 50%;
border-bottom-right-radius: 50%;
border-bottom-left-radius: 50%;
}
#timeline .timeline-badge span.timeline-balloon-date-day {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: