"Responsive Timeline"
Bootstrap 3.0.0 Snippet by skandamallapa

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.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 ---------->
<section class="section-spacing text-center" id="features">
<div class="container">
<header class="section-header">
<h2>Versions of Cartwheel</h2>
<h3>Reasons why you should choose this product</h3>
</header>
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<ul class="timeline">
<li class="timeline wow bounceInUp">
<div class="timeline-badge warning"><i class="fa fa-bullseye"></i></div>
<div class="date-info">
<span class="day">29</span><span class="month"> Jan</span><span class="year"> 2017</span>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h6 class="timeline-title">Version 1.0.2 Released with user identified fixes/enhancements</h6>
</div>
<div class="timeline-body">
<p>
Release highlights :
Layout changed inline with other Cartwheel applications. (Menu based and full-screen).
Introduced filters and sorting of Actions items.
Print facility to support printing of any saved reports (including previous reports)
</p>
</div>
</div>
</li>
<li class="timeline-inverted wow bounceInUp">
<div class="timeline-badge danger"><i class="fa fa-crosshairs"></i></div>
<div class="date-info">
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;
padding: 5px 0 5px;
position: relative;
}
.timeline h6 {
margin-bottom: 0px;
font-size: 15px;
}
.timeline:before {
top: 0;
bottom: 0;
position: absolute;
content: " ";
width: 2px;
background-color: #eeeeee;
left: 49%;
margin-left: -1.5px;
background: rgb(80, 80, 80);
background: -moz-linear-gradient(top, rgba(80, 80, 80, 0) 0%, rgb(80, 80, 80) 8%, rgb(80, 80, 80) 92%, rgba(80, 80, 80, 0) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(30, 87, 153, 1)), color-stop(100%, rgba(125, 185, 232, 1)));
background: -webkit-linear-gradient(top, rgba(80, 80, 80, 0) 0%, rgb(80, 80, 80) 8%, rgb(80, 80, 80) 92%, rgba(80, 80, 80, 0) 100%);
background: -o-linear-gradient(top, rgba(80, 80, 80, 0) 0%, rgb(80, 80, 80) 8%, rgb(80, 80, 80) 92%, rgba(80, 80, 80, 0) 100%);
background: -ms-linear-gradient(top, rgba(80, 80, 80, 0) 0%, rgb(80, 80, 80) 8%, rgb(80, 80, 80) 92%, rgba(80, 80, 80, 0) 100%);
background: linear-gradient(to bottom, rgba(80, 80, 80, 0) 0%, rgb(80, 80, 80) 8%, rgb(80, 80, 80) 92%, rgba(80, 80, 80, 0) 100%);
}
.timeline > li {
margin-bottom: 5px;
position: relative;
}
.timeline > li:before,
.timeline > li:after {
content: " ";
display: table;
}
.timeline > li:after {
clear: both;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: