"Flow - Vertical flow With Bullets list"
Bootstrap 3.3.0 Snippet by rubido

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="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="container" style=background-color:#eee;>
<div class="row">
<div class=col-xs-7>
<h2>Vertical Flow With Bullets</h2>
<span><b>STATUS:</b> Waiting for Supervisor Confirmation</span>
<div class="full-size">
<div class="bulet" style="">
<div class="roundChecked"></div>
<div class="lineChecked"></div>
<div class="roundChecked"></div>
<div class="lineUnChecked"></div>
<div class="roundUnChecked"></div>
<div class="lineUnChecked"></div>
<div class="roundUnChecked"></div>
</div>
<div class="inner-panel">
<div class="col-xs-1">
</div>
<div class="col-xs-3 center">
<span class="desc-bold">STEP 1</span>
<span class="desc-line">STEP 1</span>
</div>
<div class="col-xs-2 center">
<span class="desc-line">06.05.2018</span>
<span class="desc-line">Employee</span>
</div>
<div class="col-xs-1 center">
<span class="glyphicon glyphicon-ok sign"></span>
</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
.bulet {
width:16px;
position:absolute;
top:120px;
left:30px;
}
.roundChecked {
width:16px;
height:16px;
border-radius:50px;
border:4px #0f7c89 solid;
border-width:4px;
border-style:solid;
}
.lineChecked {
width:3px;
height:95px;
background-color:#0f7c89;
margin:auto 6px;
}
.roundUnChecked {
width:16px;
height:16px;
border-radius:50px;
border:4px #c2bfbf solid;
border-width:4px;
border-style:solid;
}
.lineUnChecked {
width:3px;
height:95px;
background-color:#c2bfbf;
margin:auto 6px;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: