-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
124 lines (122 loc) · 5.8 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WCXC9D6HV7"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-WCXC9D6HV7');
</script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&display=swap" rel="stylesheet">
<title>Low Ink</title>
<meta content="Low Ink" property="og:title" />
<meta content="Low Ink is a two day Splatoon 3 tournament for newer and lower level players." property="og:description" />
<meta content="https://lowink.iplabs.ink/" property="og:url" />
<meta content="https://lowink.iplabs.ink/assets/logo.png" property="og:image" />
<meta content="#F37002" data-react-helmet="true" name="theme-color" />
<script src="https://kit.fontawesome.com/66a42373e4.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/indexstyle.css">
<link rel="icon" href="assets/favicon.ico" type="image/x-icon">
</head>
<body>
<header class="index-header">
<div class="header-video-wrapper">
<div class="video-filter" id="video-filter"></div>
<video id="header-video" preload="none" loading="lazy" autoplay loop playsinline muted class="header-video" src="https://static.iplabs.work/LowInk/lowink_site_header.mp4"></video>
<script>
const video = document.getElementById('header-video');
window.onresize = function(){
video.style.filter = `blur(${Math.max(innerWidth/150, 7)}px) brightness(60%) grayscale(70%)`;
}
window.dispatchEvent(new Event('resize'));
const times = [0, 10, 17, 27, 38, 49, 55];
video.currentTime = times[Math.floor(Math.random() * times.length)];
video.addEventListener("loadeddata", function(){
this.classList.add("header-video-anim");
video.play();
});
</script>
</div>
<div class="header-arrows"></div>
<div class="logo-wrapper">
<div class="pre-logo">Welcome to</div>
<div class="index-header-logo">
<img src="assets/logo.png" alt="Low Ink Logo">
<div>LOW INK</div>
</div>
<div class="post-logo">A Splatoon 3 tournament for newer and lower level players.</div>
</div>
</header>
<div class="index-nav">
<div class="index-header-nav header-nav">
<div class="play">
<i class="fa-solid fa-gamepad"></i>
<br>Play Low Ink
<a href="play.html">
<span class="clickable"></span>
</a>
</div>
<div>
<i class="fa-solid fa-circle-info"></i>
<br>How To Play
<a href="howtoplay.html">
<span class="clickable"></span>
</a>
</div>
<div>
<i class="fa-solid fa-tv"></i>
<br>Watch
<a href="watch.html">
<span class="clickable"></span>
</a>
</div>
<div>
<i class="fa-solid fa-trophy"></i>
<br>Hall Of Fame
<a href="halloffame.html">
<span class="clickable"></span>
</a>
</div>
</div>
</div>
<div class="arrows-bg">
<div class="page-gradient">
<div class="section-box">
<div class="section-box-title">
About
</div>
<div class="section-box-divider"></div>
<div class="section-box-content">
<p style="font-size: 1.3em; font-weight: bold;">Low Ink is a two day Splatoon 3 tournament for newer and lower level players.</p>
<p>Our goal is to give teams a chance to get into the Splatoon 3 tournament scene and gain valuable competitive experience. This is achieved by barring higher-level teams from playing in this event. Each team is checked over manually to ensure they are at a suitable skill to play.</p>
<p>What else makes Low Ink good for newer players?</p>
<p style="font-size: .85em; padding-left: 24px;">
• The tournament bans players with tourney results exceeding the skill cap (LUTI div 4).<br>
• An easy to follow format on day 1, which guarantees 18 games played with multiple teams.<br>
• Multiple brackets on Day 2 for the top cut of teams, with placements determined by day 1 performance.<br>
• Quality live stream and commentary with a focus on introducing competitive Splatoon to newcomers.
</p>
<p>If you’re new to Low Ink and want to play, please check out our <a href="howtoplay.html">guide on how to play!</a></p>
</div>
</div>
</div>
</div>
<div class="footer-wrapper">
<a href="https://iplabs.ink/">
<img style="height: 50px;"src="svg/ipl-powered.svg"/>
</a>
<p>Low Ink is a part of the Inkling Performance Labs family.
<br>
Designed by the IPL team.
</p>
</div>
</body>
</html>