forked from Ramblurr/firefly-rpg-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomingsoon.html
72 lines (66 loc) · 2.58 KB
/
comingsoon.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>
Firefly RPG Travel Calculator
</title>
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
<link href="styles.css" media="all" rel="stylesheet" type="text/css">
<link href="chosen.min.css" media="all" rel="stylesheet" type="text/css">
<link href="chosen-bootstrap.css" media="all" rel="stylesheet" type="text/css">
</head>
<body>
<div class="container">
<!-- Static navbar -->
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Firefly RPG Tools</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li ><a href="names.html">Name Generator</a></li>
<li><a href="travel.html">Travel Calculator</a></li>
<li class="active"><a href="probability.html">Dice Pool Probability</a></li>
<li><a href="map/index.html">Interactive Map (experimental)</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
</ul>
</div><!--/.nav-collapse -->
</div><!--/.container-fluid -->
</div>
<section id="dice_prob" class="box row">
<h1>Dice Pool Probability</h1>
<div class="col-xs-3 form form-horizontal" id="opts" role="form">
Coming soon.
</div>
</section>
<!---
<section id="" class="box row">
<div class="col-md-6">
<p></p>
</div>
</section>
-->
</div>
<div id="footer">
<div class="container">
<p class="text-muted">
Adapted from <a href=
"https://docs.google.com/a/binaryelysium.com/spreadsheet/ccc?key=0AlH9FMJVH0L5dFZ6WVZtYUVUTVNybmlEdkliMXpZS1E&hl=en#gid=0"
title= "firefly travel calculator"> this spreadsheet </a> 2014, thanks to
the original unknown author
</p>
</div>
</div>
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<script src="probability.js" type="text/javascript"></script>
</body>
</html>