-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
106 lines (81 loc) · 4.32 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang=""> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang=""> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang=""> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js" lang="">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="stylesheet" href="https://rpg.rigden.us/libs/font_awesome/4.5.0/css/font-awesome.min.css">
<link href="https://rpg.rigden.us/libs/boostrap/3.3.6/bootstrap.min.css" rel="stylesheet">
<style>
#potion_well {
height: 260px;
}
#potion_well h3 {
margin-top: 0px;
margin-bottom: 0px;
position: relative;
top: 50%;
transform: translateY(-50%);
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1 class="text-center">The Miraculous Potion Machine </h1>
<div class="well" id="potion_well">
<h3 class="text-center"><span id="generated_potion"></span></h3>
</div>
<br>
<p class="text-center"><a class="btn btn-primary btn-lg" id="potion_button" href="#" role="button">Generate Potion</a></p>
<br>
<p class="text-center"><a class="btn btn-primary" id="switch_mode_button" href="#" role="button"></a></p>
<p class="text-center">
<span id="potion_mode">Basic Potion Mode</span> With <span id="potion_combinations"></span> combinations
<br>This machine has been made with the <a href="https://github.com/jrigden/seeds_of_infinity">seeds_of_infinity</a>
</p>
<br>
</div>
</div>
<hr>
<footer>
<h3 class="text-center">
<a href="https://twitter.com/potion_machine">Follow the the Miraculous Potion Machine on Twitter</a>
</h3>
<br>
<p class="text-center">
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a>
<br /><span xmlns:dct="http://purl.org/dc/terms/" property="dct:title">Mr. Rigden's RPG Tools</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="rpg.jasonrigden.com" property="cc:attributionName" rel="cc:attributionURL">Jason Rigden</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.
<br />Based on a work at <a xmlns:dct="http://purl.org/dc/terms/" href="https://rpg.rigden.us/" rel="dct:source">rpg.jasonrigden.com</a>.
</p>
<p class="text-center">
Follow Mr. Rigden<br>
<a href="https://twitter.com/mr_rigden"><i class="fa fa-twitter fa-2x"></i></a>
<a href="https://github.com/jrigden"><i class="fa fa-github fa-2x"></i></a>
<a href="https://www.facebook.com/jason.rigden"><i class="fa fa-facebook-official fa-2x"></i></a>
</p>
</footer>
</div>
<script src="https://rpg.rigden.us/libs/numeral/numeral.min.js"></script>
<script src="https://rpg.rigden.us/libs/jquery/2.2.1/jquery-2.2.1.min.js"></script>
<script src="https://rpg.rigden.us/libs/boostrap/bootstrap-3.3.6-dist/js/bootstrap.min.js"></script>
<script src="potion_machine.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-74333322-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>