xxxxxxxxxx
1
<div class="container z-depth-1 my-5 py-5 px-4 px-lg-0">
2
3
<!-- Section -->
4
<section>
5
6
<style>
7
.timeline {
8
position: relative;
9
list-style: none;
10
padding: 1rem 0;
11
margin: 0;
12
}
13
14
.timeline::before {
15
content: '';
16
position: absolute;
17
left: 50%;
18
top: 0;
19
bottom: 0;
20
width: 2px;
21
margin-left: -1px;
22
background-color: #50a1ff;
23
}
24
25
.timeline-element {
26
position: relative;
27
width: 50%;
28
padding: 1rem 0;
29
padding-right: 2.5rem;
30
text-align: right;
31
}
32
33
.timeline-element::before {
34
content: '';
35
position: absolute;
36
right: -8px;
37
top: 1.35rem;
38
display: inline-block;
39
width: 16px;
40
height: 16px;
41
border-radius: 50%;
42
border: 2px solid #50a1ff;
43
background-color: #fff;
44
}
45
46
.timeline-element:nth-child(even)::before {
47
right: auto;
48
left: -8px;
49
}
50
51
.timeline-element:nth-child(even) {
52
margin-left: 50%;
53
padding-left: 2.5rem;
54
padding-right: 0;
55
text-align: left;
56
}
57
58
@media (max-width: 767.98px) {
59
.timeline::before {
60
left: 8px;
61
}
62
}
63
64
@media (max-width: 767.98px) {
65
.timeline-element {
66
width: 100%;
67
text-align: left;
68
padding-left: 2.5rem;
69
padding-right: 0;
70
}
71
}
72
73
@media (max-width: 767.98px) {
74
.timeline-element::before {
75
top: 1.25rem;
76
left: 1px;
77
}
78
}
79
80
@media (max-width: 767.98px) {
81
.timeline-element:nth-child(even) {
82
margin-left: 0rem;
83
}
84
}
85
86
@media (max-width: 767.98px) {
87
.timeline-element {
88
width: 100%;
89
text-align: left;
90
padding-left: 2.5rem;
91
padding-right: 0;
92
}
93
}
94
95
@media (max-width: 767.98px) {
96
.timeline-element:nth-child(even)::before {
97
left: 1px;
98
}
99
}
100
101
@media (max-width: 767.98px) {
102
.timeline-element::before {
103
top: 1.25rem;
104
}
105
}
106
</style>
107
108
<h3 class="font-weight-bold text-center dark-grey-text pb-2">Our History</h3>
109
<hr class="w-header my-4">
110
<p class="lead text-center text-muted pt-2 mb-5">MDB founded to help startups, and it still shapes the way we work today.</p>
111
112
<div class="row">
113
<div class="col-lg-8 mx-auto">
114
115
<ol class="timeline">
116
<li class="timeline-element">
117
<h5 class="font-weight-bold dark-grey-text mb-3">Launched our website</h5>
118
<p class="grey-text font-small"><time datetime="2017-02-08">08 Feb 2017</time></p>
119
<p class="text-muted">Lorem ipsum dolor sit amet consectetur adipisicing elit. Assumenda ullam adipisci reiciendis porro natus laudantium similique.
120
Explicabo amet ipsum fugiat aliquam alias.</p>
121
</li>
122
123
<li class="timeline-element">
124
<h5 class="font-weight-bold dark-grey-text mb-3">Got the first 100 users</h5>
125
<p class="grey-text font-small"><time datetime="2017-08-17">17 Aug 2017</time></p>
126
<p><img class="img-fluid z-depth-1-half rounded" src="https://mdbootstrap.com/img/Photos/Horizontal/Work/12-col/img%20(6).jpg" alt="..."></p>
127
<p class="text-muted">Lorem ipsum dolor sit amet consectetur adipisicing elit. Assumenda ullam adipisci reiciendis porro natus laudantium similique.
128
Explicabo amet ipsum fugiat aliquam alias.</p>
129
</li>
130
131
<li class="timeline-element">
132
<h5 class="font-weight-bold dark-grey-text mb-3">Raised $1.4 million in seed funding</h5>
133
<p class="grey-text font-small"><time datetime="2018-03-26">26 Mar 2019</time></p>
134
<p class="text-muted">Lorem ipsum dolor sit amet consectetur adipisicing elit. Assumenda ullam adipisci reiciendis porro natus laudantium similique.
135
Explicabo amet ipsum fugiat aliquam alias.</p>
136
</li>
137
138
<li class="timeline-element">
139
<h5 class="font-weight-bold dark-grey-text mb-3">Team size increased to 20</h5>
140
<p class="grey-text font-small"><time datetime="2018-04-14">14 Apr 2019</time></p>
141
<p class="text-muted">Lorem ipsum dolor sit amet consectetur adipisicing elit. Assumenda ullam adipisci reiciendis porro natus laudantium similique.
142
Explicabo amet ipsum fugiat aliquam alias.</p>
143
</li>
144
</ol>
145
146
</div>
147
</div>
148
149
</section>
150
<!-- Section -->
151
152
</div>
1
1
1
1
Console errors: 0