-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (86 loc) · 2.07 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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Starship prototyper</title>
<style>
body {
margin: 0;
padding: 0;
color: #ddd;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#container {
width: 100%;
height: 100%;
}
#credits {
position: fixed;
left: 10px;
top: 50px;
height: 30px;
width: 100%;
text-align: left;
}
#credits a {
font-size: 12px;
color: #aaa;
text-decoration: dotted;
}
#nav {
position: absolute;
bottom: 0;
width: 100%;
height: 50px;
}
#ship-name {
position: absolute;
top: 0;
width: 100%;
height: 50px;
text-align: left;
padding: 20px 0 0 10px;
font-size: 1.5em;
}
.button-nav {
background-color: none;
font-size: 1.2em;
text-align: center;
vertical-align: middle;
width: 50%;
height: 100%;
position: relative;
float: left;
text-decoration: none;
text-decoration-style: dotted;
color: #ddd;
}
a:hover {
text-decoration: underline;
}
a:active {
background-color: #444;
}
</style>
</head>
<!-- Global Site Tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-27702832-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-27702832-1');
</script>
<body>
<div id="container"></div>
<div id="nav">
<a href="#" id="prev" class="button-nav">< prev ship</a>
<a href="#" id="next" class="button-nav">next ship ></a>
</div>
<div id="ship-name"></div>
<div id="credits">
<a href="https://github.com/jufa/starfleet_generator">Starship generator (source on github)</a>
</div>
</body>
</html>