-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtimeline-events.html
More file actions
139 lines (126 loc) · 3.77 KB
/
timeline-events.html
File metadata and controls
139 lines (126 loc) · 3.77 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>Material Design for Bootstrap</title>
<!-- MDB icon -->
<link rel="icon" href="img/mdb-favicon.ico" type="image/x-icon" />
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.2/css/all.css" />
<!-- Google Fonts Roboto -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap" />
<!-- MDB -->
<link rel="stylesheet" href="css/bootstrap-timeline.min.css" />
</head>
<body>
<!-- Start your project here-->
<style>
.timeline-1 {
border-left: 3px solid #b565a7;
border-bottom-right-radius: 4px;
border-top-right-radius: 4px;
background: rgba(177, 99, 163, 0.09);
margin: 0 auto;
position: relative;
padding: 50px;
list-style: none;
text-align: left;
max-width: 40%;
}
@media (max-width: 767px) {
.timeline-1 {
max-width: 98%;
padding: 25px;
}
}
.timeline-1 .event {
border-bottom: 1px dashed #000;
padding-bottom: 25px;
margin-bottom: 25px;
position: relative;
}
@media (max-width: 767px) {
.timeline-1 .event {
padding-top: 30px;
}
}
.timeline-1 .event:last-of-type {
padding-bottom: 0;
margin-bottom: 0;
border: none;
}
.timeline-1 .event:before,
.timeline-1 .event:after {
position: absolute;
display: block;
top: 0;
}
.timeline-1 .event:before {
left: -207px;
content: attr(data-date);
text-align: right;
font-weight: 100;
font-size: 0.9em;
min-width: 120px;
}
@media (max-width: 767px) {
.timeline-1 .event:before {
left: 0px;
text-align: left;
}
}
.timeline-1 .event:after {
-webkit-box-shadow: 0 0 0 3px #b565a7;
box-shadow: 0 0 0 3px #b565a7;
left: -55.8px;
background: #fff;
border-radius: 50%;
height: 9px;
width: 9px;
content: "";
top: 5px;
}
@media (max-width: 767px) {
.timeline-1 .event:after {
left: -31.8px;
}
}
</style>
<div class="container py-5">
<div class="row">
<div class="col-md-12">
<div id="content">
<ul class="timeline-1 text-black">
<li class="event" data-date="12:30 - 1:00pm">
<h4 class="mb-3">Registration</h4>
<p>Get here on time, it's first come first serve. Be late, get turned away.</p>
</li>
<li class="event" data-date="2:30 - 4:00pm">
<h4 class="mb-3 pt-3">Opening Ceremony</h4>
<p>Get ready for an exciting event, this will kick off in amazing fashion with MOP & Busta
Rhymes as an opening show.</p>
</li>
<li class="event" data-date="5:00 - 8:00pm">
<h4 class="mb-3 pt-3">Main Event</h4>
<p>This is where it all goes down. You will compete head to head with your friends and rivals. Get
ready!</p>
</li>
<li class="event" data-date="8:30 - 9:30pm">
<h4 class="mb-3 pt-3">Closing Ceremony</h4>
<p class="mb-0">See how is the victor and who are the losers. The big stage is where the winners bask in their
own glory.</p>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- End your project here-->
<!-- MDB -->
<script type="text/javascript" src="js/mdb.min.js"></script>
<!-- Custom scripts -->
<script type="text/javascript"></script>
</body>
</html>