-
Notifications
You must be signed in to change notification settings - Fork 0
/
links.html
65 lines (65 loc) · 2.74 KB
/
links.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS FILES TO LOAD BUT NOT DISPLAY -->
<link rel="stylesheet" href="themes/light.css"/>
<link rel="stylesheet" href="themes/gradient.css"/>
<!-- that's all -->
<link rel="stylesheet" href="themes/dark.css" id="theme_css"/>
<link rel="stylesheet" href="style.css"/>
<link rel="icon" type="image/x-icon" href="favicon.ico">
<script src="script.js" defer></script>
<title>xxos site ∫ links</title>
</head>
<body>
<div id="mobileNav" class="gBox" onclick="openMenu()">Ξ</div>
<header class="gBox">
<div id="topOfMenu">
<a href="/" style="margin-right: auto;">
<div id="logo"></div>
<h1 id="logoText">XXOs</h1>
</a>
<div id="closeNav" onclick="openMenu()">X</div>
</div>
<div class="ider mobileOnly"></div>
<a class="button" href="/">Home</a>
<div class="ider"></div>
<a class="button active" href="/links">Links</a>
<div class="ider"></div>
<a class="button" href="/interests">Interests</a>
<div class="ider"></div>
<a class="button" href="/furry">Fursonas</a>
<div class="ider"></div>
<select name="theme" id="theme" class="button">
<option value="dark">Dark mode</option>
<option value="light">Light mode</option>
<option value="gradient">𝑔𝓇𝒶𝒹𝒾𝑒𝓃𝓉</option>
</select>
</header>
<div id="line"></div>
<div id="linkContainer">
<div class="gBox linkBox" style="min-width: 10em;">
<h1 style="margin-bottom: 0px;">Links</h1>
</div>
<div class="gBox linkBox">
<a href="https://discord.com/users/648765051297202195" target="_blank" class="sLink discord">Discord (@xxos)</a>
</div>
<div class="gBox linkBox">
<a href="https://thexxos.tumblr.com" target="_blank" class="sLink tumblr">Tumblr (thexxos)</a>
</div>
<div class="gBox linkBox">
<a href="https://www.mediawiki.org/wiki/User:TheXXOs" target="_blank" class="sLink mediawiki">MediaWikis (TheXXOs/various)</a>
</div>
<div class="gBox linkBox">
<a href="https://github.com/TheXXOs" target="_blank" class="sLink github">Github (TheXXOs)</a>
</div>
<div class="gBox linkBox">
<a href="https://www.youtube.com/channel/UCQhK7joYZMacNiSpWEtnHLQ" target="_blank" class="sLink youtube">YouTube (@_XXOs)</a>
</div>
<div class="gBox linkBox">
<a href="https://archiveofourown.org/users/XXOs" target="_blank" class="sLink ao3">AO3 (XXOs)</a>
</div>
</div>
</body>
</html>