-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (59 loc) · 1.75 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
<!DOCTYPE html>
<html>
<head>
<meta name="google-site-verification" content="cmog8P382plnTmK8YrbELA-RoOQ5Zxf7jaPn8Qr9ajQ" />
<title>WPLTS - Home</title>
<script>
var DirectoryAmt = 0;
</script>
<script src = "Nav.js" id="s1"></script>
<script src="code.js" id="s2"></script>
<script>StartNav();</script>
</head>
<body>
<div id="NavBarThing" class=""> </div>
<link href="style.css" rel="stylesheet" type="text/css">
<img id="cover" src='Capture.PNG'>
<div id="content">
<a href="About.html" class="mainLink2"><h1 class="title">About</h1></a>
<br>
<a href="RPGMechanics/RPGMechanics.html" class="mainLink2"><h1 class="title">RPG Mechanics and Campaigns</h1></a>
<br>
<a href="Team.html" class="mainLink2"><h1 class="title">The Team</h1></a>
<br>
<!--a href="Items/ItemsAndShips.html" class="mainLink"><h1 class="title">Items and Vehicles</h1></a>
<br-->
<a href="SpaceTerms/Terms.html" class="mainLink2"><h1 class="title">Lore and Space Things</h1></a>
<br>
<a href="GameGuide/GameGuide.html" class="mainLink2"><h1 class="title">The Video Game</h1></a>
<br>
<a href="Soundtrack/Soundtrack.html" class="mainLink2"><h1 class="title">The Soundtrack</h1></a>
<br>
</div>
<style>
#cover
{
width: 100%;
position: sticky;
top: -15%;
z-index: -1;
}
/*
#containerMain
{
perspective: 100vw;
transform-style: preserve-3d;
height: 100vh;
overflow-x: hidden;
overflow-y: scroll;
}*/
#content
{
perspective: 50vw;
position: relative;
display: block;
z-index: 1;
}
</style>
</body>
</html>