xxxxxxxxxx
1
<div class="container my-5">
2
3
<!-- Section: Introduction -->
4
<section class="">
5
6
<p>Free examples of Bootstrap bootstrap timeline horizontal. </p>
7
8
<p>
9
Detailed documentation and more examples you can find in our
10
<a href="https://mdbootstrap.com/docs/standard/extended/timeline/" target="_blank"><strong>Timeline Docs</strong></a>.
11
</p>
12
13
<hr class="mt-5">
14
15
<p>Built with <a target="_blank" href="https://mdbootstrap.com/docs/standard/">Material Design for Bootstrap</a> - free and powerful Bootstrap UI KIT</p>
16
17
<a class="btn btn-primary me-2" href="https://mdbootstrap.com/docs/standard/getting-started/installation/" target="_blank" role="button">Download MDB UI KIT <i class="fas fa-download ms-2"></i></a>
18
<a class="btn btn-danger me-2" target="_blank" href="https://mdbootstrap.com/docs/standard/" role="button">Learn more</a>
19
<a class="btn btn-success me-2" target="_blank" href="https://mdbootstrap.com/docs/standard/getting-started/" role="button">Tutorials</a>
20
<a class="btn btn-dark me-2" target="_blank" href="https://github.com/mdbootstrap/mdb-ui-kit" role="button">GitHub <i class="fab fa-github ms-2"></i></a>
21
22
<hr class="mb-5"/>
23
24
</section>
25
<!-- Section: Introduction -->
26
27
<!-- Section: Basic example -->
28
<section class="">
29
30
<p><strong>Basic example</strong></p>
31
32
<div class="container-fluid py-5">
33
34
<div class="row">
35
<div class="col-lg-12">
36
37
<div class="horizontal-timeline">
38
39
<ul class="list-inline items">
40
<li class="list-inline-item items-list">
41
<div class="px-4">
42
<div class="event-date badge bg-info">2 June</div>
43
<h5 class="pt-2">Event One</h5>
44
<p class="text-muted">It will be as simple as occidental in fact it will be Occidental Cambridge
45
friend</p>
46
<div>
47
<a href="#" class="btn btn-primary btn-sm">Read more</a>
48
</div>
49
</div>
50
</li>
51
<li class="list-inline-item items-list">
52
<div class="px-4">
53
<div class="event-date badge bg-success">5 June</div>
54
<h5 class="pt-2">Event Two</h5>
55
<p class="text-muted">Everyone realizes why a new common language one could refuse translators.</p>
56
<div>
57
<a href="#" class="btn btn-primary btn-sm">Read more</a>
58
</div>
59
</div>
60
</li>
61
<li class="list-inline-item items-list">
62
<div class="px-4">
63
<div class="event-date badge bg-danger">7 June</div>
64
<h5 class="pt-2">Event Three</h5>
65
<p class="text-muted">If several languages coalesce the grammar of the resulting simple and regular</p>
66
<div>
67
<a href="#" class="btn btn-primary btn-sm">Read more</a>
68
</div>
69
</div>
70
</li>
71
<li class="list-inline-item items-list">
72
<div class="px-4">
73
<div class="event-date badge bg-warning">8 June</div>
74
<h5 class="pt-2">Event Four</h5>
75
<p class="text-muted">Languages only differ in their pronunciation and their most common words.</p>
76
<div>
77
<a href="#" class="btn btn-primary btn-sm">Read more</a>
78
</div>
79
</div>
80
</li>
81
</ul>
82
83
</div>
84
85
</div>
86
</div>
87
88
</div>
89
90
</section>
91
<!-- Section: Basic example -->
92
</div>
xxxxxxxxxx
1
.horizontal-timeline .items {
2
border-top: 3px solid #e9ecef;
3
}
4
5
.horizontal-timeline .items .items-list {
6
display: block;
7
position: relative;
8
text-align: center;
9
padding-top: 70px;
10
margin-right: 0;
11
}
12
13
.horizontal-timeline .items .items-list:before {
14
content: "";
15
position: absolute;
16
height: 36px;
17
border-right: 2px dashed #dee2e6;
18
top: 0;
19
}
20
21
.horizontal-timeline .items .items-list .event-date {
22
position: absolute;
23
top: 36px;
24
left: 0;
25
right: 0;
26
width: 75px;
27
margin: 0 auto;
28
font-size: .9rem;
29
padding-top: 8px;
30
}
31
32
@media (min-width: 1140px) {
33
.horizontal-timeline .items .items-list {
34
display: inline-block;
35
width: 24%;
36
padding-top: 45px;
37
}
38
39
.horizontal-timeline .items .items-list .event-date {
40
top: -40px;
41
}
42
}
1
1
Console errors: 0