-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
178 lines (159 loc) · 7.04 KB
/
Copy pathindex.html
File metadata and controls
178 lines (159 loc) · 7.04 KB
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html>
<html>
<head>
<style>
div.gallery {
margin: 5px;
border: 1px solid #ccc;
width: 300px;
display: inline-block;
vertical-align: top;
}
div.gallery:hover {
border: 1px solid #777;
}
div.gallery img {
width: 100%;
height: auto;
}
div.desc {
padding: 15px;
text-align: center;
color: #8B4513;
font-size: 20px
}
button {
background-color: black;
border: solid 2.5px #8B4513;
color: #8B4513;
border-radius: 25px;
margin-top: 0.30rem
}
.hidden {
color: #8B4513;
width: 75rem;
text-align: center;
vertical-align: top;
border: 1px solid #8B4513;
height: 200px;
padding: 3px;
margin-top: 1em;
}
#share-buttons img {
width: 40px;
padding: 5px;
border: 0;
box-shadow: 0;
}
#share-buttons a {
display: inline-block;
}
</style>
<meta charset="UTF-8">
</head>
<body style="background-color: black">
<script>
function showAbout() {
if (document.getElementById('about').style.display == 'none'){
document.getElementById('about').style.display = 'inline-block'
document.getElementById('history').style.display = 'none'
document.getElementById('contact').style.display = 'none'
document.getElementById('images').style.display = 'none'
}
}
function showHistory() {
if (document.getElementById('history').style.display == 'none'){
document.getElementById('history').style.display = 'inline-block'
document.getElementById('contact').style.display = 'none'
document.getElementById('about').style.display = 'none'
document.getElementById('images').style.display = 'none'
}
}
function showContact() {
if (document.getElementById('contact').style.display == 'none'){
document.getElementById('contact').style.display = 'inline-block'
document.getElementById('history').style.display = 'none'
document.getElementById('about').style.display = 'none'
document.getElementById('images').style.display = 'none'
}
}
function showImages() {
if (document.getElementById('images').style.display == 'none'){
document.getElementById('images').style.display = 'inline-block'
document.getElementById('history').style.display = 'none'
document.getElementById('about').style.display = 'none'
document.getElementById('contact').style.display = 'none'
}
}
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery-ui.min.js"></script>
<div id="share-buttons" style="float:left;width: 105px">
<!-- Youtube -->
<a href="https://youtube.com/channel/UCFqobq1l0JjKCh65htiAWVg" target="_blank" style="text-decoration: none">
<img src="https://cdn4.iconfinder.com/data/icons/social-media-icons-the-circle-set/48/youtube_circle-512.png" alt="Youtube" />
</a>
<!-- Reddit -->
<a href="https://reddit.com/u/iVigilantes" title="Simple Share Buttons" target="_blank" style="text-decoration: none">
<img src="https://simplesharebuttons.com/images/somacro/reddit.png" alt="Reddit" />
</a>
<!-- Twitter -->
<a href="https://twitter.com/VigilantesWilds" target="_blank" style="text-decoration: none">
<img src="https://simplesharebuttons.com/images/somacro/twitter.png" alt="Twitter" />
</a>
<!-- Wilds -->
<a href="https://wilds.io" target="_blank" style="text-decoration: none">
<img src="https://cdn.discordapp.com/attachments/324578076157542402/327909900418285568/favicon.ico" alt="Wilds" />
</a>
<!-- Userecho -->
<a href="https://wilds.userecho.com/users/3470-vigilante-gaming/topics/" target="_blank" style="text-decoration: none">
<img src="https://cdn.discordapp.com/attachments/324578076157542402/327917092412325898/userecho_burned.png" alt="Wilds Userecho">
</a>
<!-- Soundcloud -->
<a href="https://soundcloud.com/vigilante_gaming" target="_blank">
<img src="http://www.myiconfinder.com/uploads/iconsets/256-256-9550d3f08a15ca1777c5deb465b95be6-soundcloud.png" alt="Soundcloud">
</a>
</div>
<div style="background-color: black; border: solid #8B4513 3px; border-radius: 25px;color:#8B4513; text-align: center;width: 75em; margin: 0 auto"><h1>The Vigilantes</h1></div>
<div style="width: 50%;height:100px;margin:0 auto;text-align: center">
<button style="height: 3rem;width: 7rem;vertical-align: top;font-size: 16px" type="button" onclick="showAbout()">About</button>
<button style="height: 3rem;width: 7rem;vertical-align: top;font-size: 16px" type="button" onclick="showHistory()">Guild History</button>
<button style="height: 3rem;width: 7rem;vertical-align: top;font-size: 16px" type="button" onclick="showContact()">Contact the Vigilantes</button>
<button style="height: 3rem;width: 7rem;vertical-align: top;font-size: 16px" type="button" onclick="showImages()">Image Gallery</button>
</div>
<div style="width: 100%;margin: 0 auto;text-align: center">
<div id='about' class='hidden' style="display: none;font-size: 20px">
<h1>About the Vigilantes</h1>
<p>The Vigilante Gaming Guild is much more than a so-called, 'guild.' Our members are dedicated to doing their best, for themselves and the community. We recruit only elite members, based not just on skill but on their potential to change Wilds.io for the better. This is our 'guild' way, we will stay strong and never back down." — The Vigilante Founders</p>
</div>
<div id='history' class='hidden' style="display: none;font-size: 20px">
<h1>Guild History</h1>
<p>(pending, copy/paste history here when you recieve it)</p>
</div>
<div id="contact" class="hidden" style="display: none;font-size: 20px">
<h1>Contact</h1>
<p>The best way to get in contact with the Vigilantes is to ping (@mention) Saii in the <a href="https://discordapp.com/invite/vWFBQa3">Wilds discord channel</a></p>
</div>
</div>
<div id="images" class="hidden" style="height: 200px;display: none;border: none;margin: 0 auto;width: 100%">
<div class="gallery">
<a target="_blank" href="https://pbs.twimg.com/media/DBA63jSXgAEIBlm.jpg">
<img src="https://pbs.twimg.com/media/DBA63jSXgAEIBlm.jpg" alt="Vigilante members" width="300" height="200">
</a>
<div class="desc">Some vigilante members in-game with Rezoner, the creator of the game.</div>
</div>
<div class='gallery'>
<a target="_blank" href="https://pbs.twimg.com/media/C_5Yl17UQAAUENy.jpg">
<img src="https://pbs.twimg.com/media/C_5Yl17UQAAUENy.jpg" alt="Lots of items" width="300" height="200">
</a>
<div class="desc">A whole lot of items amassed in practice mode</div>
</div>
<div class="gallery">
<a target="_blank" href="https://pbs.twimg.com/media/C_3PJblW0AAmy6V.jpg">
<img src="https://pbs.twimg.com/media/C_3PJblW0AAmy6V.jpg" alt="Ogres" width="300" height="200">
</a>
<div class="desc">A prototype of the Ogres</div>
</div>
</div>
</body>
</html>