-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (58 loc) · 1.87 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
60
61
62
63
64
65
66
67
68
69
70
71
<!doctype html>
<html lang="en">
<head>
<title>Chiχ UI - jsPlumb</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap -->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-theme.min.css">
<!-- todo underscore is loaded twice, see init.js -->
<script src="//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.5.1/underscore-min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/can.js/1.1.7/can.jquery.min.js"></script>
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<script src="/lib/jquery.mobile.vmouse.js"></script>
<link href="css/stroll.css" rel="stylesheet" media="screen">
<style>
body {
background-color: #33342d;
}
#page-wrapper {
margin: 0 auto;
}
.panel-content button {
margin-top: 0.6em;
margin-left: 0.6em;
}
.window {
background-color: white;
box-shadow: 2px 2px 19px #444;
opacity:0.9;
filter:alpha(opacity=90);
-o-box-shadow: 2px 2px 19px #444;
-webkit-box-shadow: 2px 2px 19px #444;
-moz-box-shadow: 2px 2px 19px #fff;
-moz-border-radius:0.5em;
}
.window:hover {
box-shadow: 2px 2px 19px #e0e0e0;
-o-box-shadow: 2px 2px 19px #e0e0e0;
-webkit-box-shadow: 2px 2px 19px #e0e0e0;
-moz-box-shadow: 2px 2px 19px #e0e0e0;
}
.window:hover {
border:1px solid #123456;
}
</style>
</head>
<body>
<div id="page-wrapper">
<div id="packages" class="panel panel-default window"></div>
</div>
<!-- UI code -->
<script src="build/main.js"></script>
</body>
</html>