-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (39 loc) · 1.99 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
<!DOCTYPE html>
<html>
<head>
<title>vote for us! - firestarter</title>
<meta name="theme-color" content="#ff855c">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A community-centric Minecraft SMP server with a simple, relaxing, and uncluttered experience that complements the vanilla game!">
<link rel="icon" type="image/png" href="./img/logo-sticker.png">
<link rel="stylesheet" href="css/styles.css" type="text/css">
</head>
<body>
<div class="content">
<img class="image" src="img/plsvote.gif">
<div class="buttons">
<h3>Vote for us!</h3>
<h4>Each vote rewards you with a Flare and money!</h4>
<br/>
<h4 style="color: var(--text-secondary-color);">Vote on at least 5 sites to increase your <span class="streak">streak</span> and earn more rewards for future votes! 💸</h4>
<br/>
<a class="site-button" href="https://minecraftservers.org/vote/562392" target="_blank">1</a>
<a class="site-button" href="https://servers-minecraft.net/server-firestarter.24916" target="_blank">2</a>
<a class="site-button" href="https://minecraft.buzz/vote/1524" target="_blank">3</a>
<a class="site-button" href="https://topminecraftservers.org/vote/7919" target="_blank">4</a>
<a class="site-button" href="https://minecraft-mp.com/server/232422/vote/" target="_blank">5</a>
<a class="optional site-button" href="https://minecraftpocket-servers.com/server/125040/vote/" target="_blank">6</a>
<a class="optional site-button" href="https://minecraft-server-list.com/server/445696/vote/" target="_blank">7</a>
</div>
</div>
<script>
let elements = document.getElementsByClassName("site-button")
for (let i = 0; i < elements.length; i++) {
let element = elements[i]
element.addEventListener("click", () => {
element.style.background = "#4ade80"
})
}
</script>
</body>
</html>