-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (40 loc) · 1.41 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
<!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">
<link rel="stylesheet" href="./style.css">
<script src="./script.js"></script>
<script
src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha512-5SUkiwmm+0AiJEaCiS5nu/ZKPodeuInbQ7CiSrSnUHe11dJpQ8o4J1DU/rw4gxk/O+WBpGYAZbb8e17CDEoESw=="
crossorigin="anonymous"
></script>
<title>SnabbGET</title>
</head>
<body>
<div class="container">
<p class="p-title">
<a href="https://github.com/SnabbGET/SnabbGET" class="title">
SnabbGET
</a>
</p>
<p class="p-description">
<span class="desc">
The only terminal with a UI, for beginners.
</span>
</p>
</div>
<a href="./more/" class="animated-link">
<span>Learn more</span>
</a>
<!-- Thanks to https://codepen.io/rebelchris/pen/jOMGweo for this part -->
<input type="checkbox" id="toggle" class="toggle--checkbox" onclick='if ($("#toggle:checked")[0] === undefined)
document.getElementsByTagName("html")[0].style.setProperty("--invert", "100%");
else document.getElementsByTagName("html")[0].style.setProperty("--invert", "0%");' checked />
<label for="toggle" class="toggle--label">
<span class="toggle--label-background"></span>
</label>
</body>
</html>