forked from adamalex/fuelux-hbconcept
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (49 loc) · 1.3 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html class="fuelux">
<head>
<title>Fuel UX</title>
<link href="vendor/fuelux/css/fuelux.css" rel="stylesheet">
<style>
body { padding-top: 60px; }
#Navigation li { cursor: pointer; }
.fuelux .navbar-fixed-top .container,
.fuelux .container { width: 1024px }
.pillbox {
border: 1px solid #bbb;
margin-bottom: 10px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
width: 251px;
}
</style>
</head>
<body>
<!-- NAVIGATION -->
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="#">Fuel UX</a>
<div class="nav-collapse collapse">
<ul id="Navigation" class="nav">
<li data-content="step1"><a>Step 1</a></li>
<li data-content="step2"><a>Step 2</a></li>
<li data-content="step3"><a>Step 3</a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- PAGE CONTENT -->
<div class="container">
<div id="PageContent"></div>
</div>
<!-- KICK OFF LOGIC WITH REQUIREJS -->
<script data-main="scripts/sampleconfig" src="vendor/require.js"></script>
</body>
</html>