-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeanprocess.html
More file actions
77 lines (55 loc) · 1.7 KB
/
meanprocess.html
File metadata and controls
77 lines (55 loc) · 1.7 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>MeanProcess</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Load CSS -->
<link href='http://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="../src/css/meanprocess.css">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<style>
html {
-webkit-text-size-adjust: none;
-webkit-font-smoothing: antialiased;
background-color: #f9f9f9;
}
.wrap, .wrap * {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body {
font-family: "Montserrat", sans-serif;
}
</style>
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
</head>
<body>
<div id="process">
<div class="mean-processbar">
<div class="mean-processbar-marker" data-percent="0">
<span class="mpb-marker"></span>
<span class="mean-processbar-title">Design</span>
</div>
<div class="mean-processbar-marker" data-percent="50">
<span class="mpb-marker"></span>
<span class="mean-processbar-title">Develop</span>
</div>
<div class="mean-processbar-marker" data-percent="100">
<span class="mpb-marker"></span>
<span class="mean-processbar-title">Deliver</span>
</div>
<div class="mean-processbar-bar"></div>
</div>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.js"></script>
<script src="../src/js/jquery.meanprocess.js"></script>
<script>
$('#process').meanprocess();
</script>
</body>
</html>