"Event List"
Bootstrap 3.0.0 Snippet by edwarddikgale

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 ---------->
<div class="container">
<div class="row">
<div class="[ col-xs-12 col-sm-offset-2 col-sm-8 ]">
<ul class="event-list">
<li>
<time datetime="2018-10-29">
<span class="day">29</span>
<span class="month">Oct</span>
<span class="year">2018</span>
<span class="time">ALL DAY</span>
</time>
<img alt="dj-set" src="https://st.depositphotos.com/1430909/1434/i/950/depositphotos_14345167-stock-photo-dj-playing-the-track.jpg" />
<div class="info">
<div class="row">
<div class="col-sm-10">
<h2 class="title">Laco 1st year anniversary</h2>
</div>
<div class="col-sm-2">
<img alt="germany" class="flag" src="https://theodora.com/flags/new/de-t.gif" />
</div>
</div>
<div class="row">
<div class="col-sm-3">Start:</div>
<div class="col-sm-9">29 Oct 2018 (23:30)</div>
</div>
<div class="row">
<div class="col-sm-3">End:</div>
<div class="col-sm-9">30 Oct 2018 (06:00)</div>
</div>
<div class="row">
<div class="col-sm-3">Address:</div>
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
@import url("http://fonts.googleapis.com/css?family=Lato:100,300,400,700,900,400italic");
@import url("//netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css");
body {
padding: 60px 0px;
background-color: rgb(220, 220, 220);
}
.flag{
width: 50px;
}
h2{
font-size: 200%;
margin-top: 0px;
font-weight: bold;
}
.event-list .info .row{
padding-left: 10px;
font-size: 80%;
}
.event-list {
list-style: none;
font-family: 'Lato', sans-serif;
margin: 0px;
padding: 0px;
}
.event-list > li {
background-color: rgb(255, 255, 255);
box-shadow: 0px 0px 5px rgb(51, 51, 51);
box-shadow: 0px 0px 5px rgba(51, 51, 51, 0.7);
padding: 0px;
margin: 0px 0px 20px;
}
.event-list > li > time {
display: inline-block;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: