"Sassy Multi-Step"
Bootstrap 3.1.0 Snippet by mikesigs

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
<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.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" style="width: 75%; margin: 10px auto;">
<div class="row multistep">
<div class="col-xs-3 multistep-step complete">
<div class="text-center multistep-stepname">Completed Step</div>
<div class="progress"><div class="progress-bar"></div></div>
<a href="#" class="multistep-dot"></a>
</div>
<div class="col-xs-3 multistep-step current">
<div class="text-center multistep-stepname">Current Step</div>
<div class="progress"><div class="progress-bar"></div></div>
<a href="#" class="multistep-dot"></a>
</div>
<div class="col-xs-3 multistep-step next">
<div class="text-center multistep-stepname">Next Step</div>
<div class="progress"><div class="progress-bar"></div></div>
<a href="#" class="multistep-dot"></a>
</div>
<div class="col-xs-3 multistep-step disabled">
<div class="text-center multistep-stepname">Final Step</div>
<div class="progress"><div class="progress-bar"></div></div>
<a href="#" class="multistep-dot"></a>
</div>
</div>
</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
/* Multistep */
/* See below for SASS (allows you easily set dot radius and progress bar thickness and adjusts everything else! */
.multistep .multistep-step {
padding: 0;
position: relative;
margin-bottom: 10px;
}
.multistep .multistep-step .multistep-stepname {
margin-bottom: 16px;
color: #595959;
font-size: 1.6rem;
white-space: nowrap;
}
.multistep .multistep-step .multistep-dot {
position: absolute;
right: 50%;
left: 50%;
width: 32px;
height: 32px;
display: block;
margin-top: -16px;
margin-left: -15.5px;
border-radius: 50%;
background: #f5f5f5;
/* Inner Dot */
}
.multistep .multistep-step .multistep-dot:after {
content: ' ';
border-radius: 50px;
position: absolute;
top: 8px;
bottom: 8px;
left: 8px;
right: 8px;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: