-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·60 lines (51 loc) · 1.9 KB
/
index.html
File metadata and controls
executable file
·60 lines (51 loc) · 1.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>Bumpy Journey</title>
<!-- Bootstrap core CSS -->
<script src="js/cards.js"></script>
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/animate.css" rel="stylesheet">
<link href="css/custom.css" rel="stylesheet">
<link href='http://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-sm-12 col-lg-12 col-md-12">
<div class="spin-wrapper">
<div class="elem" style="display:none">
<div class="burst-8"></div>
<div class="helpline">DRAW CARD</div>
</div>
</div>
<div class="card-wrapper">
<div class="card" style="display:none"></div>
</div>
</div>
</div>
</div>
<!-- /.container -->
<!-- JavaScript -->
<script src="js/jquery-1.10.2.js"></script>
<script src="js/lodash.min.js"></script>
<script src="js/bootstrap.js"></script>
<script "text/javascript" src="js/jQueryRotate.js"></script>
<script src="js/custom.js"></script>
<script type="text/template" id='card-template'>
<div class="card-inner" style="background: <%= cardBgColor %>; color: <%= cardTextColor %>">
<h1> <%= cardName %> </h1>
<div class="card-content"><%= cardContent %></div>
<div class="buttons">
<button type="button" class="go-again btn btn-primary btn-lg active">
<span class="glyphicon glyphicon-repeat"></span>
</button>
</div>
</div>
</script>
</body>
</html>