"index"
Bootstrap 3.3.0 Snippet by diepnguyentn

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="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="container-fluid">
<div class="phone-body">
<div class="phone-area">
<div class="body">
<div class="tab-content">
<div role="tabpanel">
<ul class="nav nav-sections" role="tablist">
<li class="active"><a href="#recentBusinesses" aria-controls="recent" role="tab" data-toggle="tab">Recent</a></li>
<li><a href="#nearbyBusinesses" aria-controls="nearbyBusinesses" role="tab" data-toggle="tab">Nearby</a></li>
<li><a href="#businessCategories" aria-controls="businessCategories" role="tab" data-toggle="tab">Categories</a></li>
<li><a href="#nearbyBusinesses" aria-controls="nearbyBusinesses" role="tab" data-toggle="tab">Nearby</a></li>
</ul>
</div>
<img src="http://vsmart.bobsseo.netdna-cdn.com/wp-content/uploads/services-payperclick-alt-colors-optimized.png" width="250" height="200">
<div class="step-123">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<div class="container">
<div class="process">
<div class="process-row">
<div class="process-step">
<button type="button" class="btn btn-default btn-circle" disabled="disabled"><i class="fa fa-user fa-3x"></i></button>
<p>Identification</p>
</div>
<div class="process-step">
<button type="button" class="btn btn-default btn-circle" disabled="disabled"><i class="fa fa-comments-o fa-3x"></i></button>
<p>Livraison</p>
</div>
<div class="process-step">
<button type="button" class="btn btn-success btn-circle" disabled="disabled"><i class="fa fa-eur fa-3x"></i></button>
<p>Confirmation</p>
</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=Roboto:400,700);
@import url(http://fonts.googleapis.com/css?family=Roboto+Condensed:400,700);
body {
background: #aaa;
}
.phone-body {
width: calc(100% + 20px);
height: calc(100% + 20px);
}
.phone-area {
width: 100%;
height: 100%;
background: #edf0f1;
overflow-y: auto;
overflow-x: hidden;
}
.sim-container {
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
.body {
font-family: 'Roboto Condensed', 'sans-serif';
background: #edf0f1;
width: 100%;
}
.nav-sections > li {
float: left;
border-right: 1px solid #95A5A6;
text-align: center;
font-weight: bold;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
$(function() {
$('#resize').click(function() {
var width = $('#width').val();
var height = $('#height').val();
var style = 'width: ' + width + 'px; height: ' + height + 'px;';
$('.wrapper').attr('style', style);
});
});
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: