-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (60 loc) · 2.96 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
<!doctype html>
<html>
<!-- Storyteller dice roller v0.0.10-web-components -->
<head>
<meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<title>Storyteller dice roller</title>
<!-- web components JavaScript -->
<script src="components/header-roller.js"></script>
<script src="components/footer-roller.js"></script>
<!-- external javascript for the roller -->
<script src="WtA20-roller.js" defer></script>
<!-- external css for the roller -->
<link rel="stylesheet" href="index.css">
<!-- Adobe fonts link -->
<link rel="stylesheet" href="https://use.typekit.net/lyk8wbp.css">
</head>
<body>
<div class="wrapper">
<div class="backdrop">
<section class="flex" id="topbars">
<div class="flex row column">
<div class="topnav">
<div style="float:left;">
<h4></h4>
</div>
<div style="float:right;">
<!-- <button class="topbutton" name="" value="" id="" title="About" onclick="window.location.href='help.html';">Help</button>-->
<button class="topbutton" name="" value="" id="" title="About" onclick="window.location.href='about.html';">About</button>
<!-- <button class="topbutton" name="" value="" id="" title="About" onclick="window.location.href='index.html';">Home</button>-->
</div>
</div>
<div class="row header" id="maintitle">
<h1 id="title">Storyteller Dice Roller</h1>
</div>
</div>
</section>
<section class="flex fullwidth" id="links-section">
<div class="links-row">
<div class="link">
<p><a href="WtA20-roller.html" onclick="window.open(this.href, 'mywin',
'left=20,top=20,width=700,height=800,toolbar=1,resizable=0'); return false;" rel="noopener noreferrer" title="Werewolf 20th Anniversary dice roller">Werewolf the Apocalypse<br>20th Anniversary Edition</a></p>
<p><span style="font-size:0.8em;">(opens new window)</span></p>
</div>
<!-- <div class="link">
<p><a href="#">Test link</a></p>
<p>(opens new window)</p>
</div> -->
<!-- <div class="link">
<p><a href="#">Test link</a></p>
<p>(opens new window)</p>
</div>
-->
</section>
</div>
<footer-roller></footer-roller>
</div> <!-- wrapper -->
</body>
</html>