forked from maciej-gurban/responsive-bootstrap-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (34 loc) · 1.68 KB
/
index.html
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
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content=="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Responsive Bootstrap Toolkit</title>
<!-- Include default Bootstrap stylesheet -->
<link rel="stylesheet" type="text/css" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet"/>
<!-- Include stylesheet of this example -->
<link rel="stylesheet" type="text/css" href="style.css" rel="stylesheet"/>
</head>
<body>
<div class="wrapper">
<div class="site-topbar clearfix" data-compact-height="40" data-fullsize-height="60">
<h5 class="text-uppercase">Responsive Bootstrap Toolkit</h5>
<div class="breakpoint-alias pull-right text-center"></div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<h4>Example #1</h4>
<p>In this example, height of the top bar will collapse whenever XS breakpoints is reached, and restore to the original if higher breakpoint is detected.</p>
<p>To verify which breakpoint you're currenly browsing, refer to the blue box in the top right corner storing current breakpoint's alias.</p>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<script src="js/bootstrap-toolkit.js"></script>
<script src="js/main.js"></script>
</body>
</html>