-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
82 lines (79 loc) · 3.75 KB
/
about.html
File metadata and controls
82 lines (79 loc) · 3.75 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About</title>
<link rel="icon" type="image/png" href="favicon.png" />
<link href="new.css" rel="stylesheet" type="text/css" />
<link href="snackbar.css" rel="stylesheet" type="text/css" />
<script src="https://kit.fontawesome.com/8df7d40c3b.js" crossorigin="anonymous"></script>
</head>
<body>
<nav class="bar" id="nav">
<h2 id="header"><a class="yex">Yex</a>'s Games</h2>
<a class="updown" id="updown" onclick="b=!b; xd()"><i id='ud' class="fa fa-fw fa-angle-double-up"></i></a>
<a href="index.html" data-tippy-content="Home"><i class="fa fa-fw fa-home"></i></a>
<a class="active"><i class="fa fa-fw fa-info-circle"></i></a>
<a href="games.html" data-tippy-content="Games"><i class="fa fa-fw fa-gamepad"></i></a>
<div class="has-dropdown">
<button id="settings" data-tippy-content="Settings"><i class="fa fa-fw fa-gear"></i></button>
<ul class="dropdown">
<li class="dropdown-item">
<a onclick="theme('red', this)" href="#">Red</a>
</li>
<li class="dropdown-item">
<a onclick="theme('rgb(50, 150, 255)', this)" href="#" class="active">Blue</a>
</li>
<li class="dropdown-item">
<a onclick="theme('limegreen', this)" href="#">Green</a>
</li>
<li class="dropdown-item">
<input type="color" id="thmclr">
<a href="#" data-custom onclick="theme('white', this, true)">Custom</a>
</li>
</ul>
</div>
<a href="bookmarklets.html" data-tippy-content="Bookmarklets"><i class="fa fa-fw fa-bookmark"></i></a>
<a href="chat.html" data-tippy-content="Chat"><i class="fa fa-fw fa-wechat"></i></a>
<a href="https://discord.gg/V49EfgSWgr" data-tippy-content="Discord"><i class="fab fa-discord"></i></a>
<a href="ide.html" data-tippy-content="IDE"><i class="fa fa-fw fa-code"></i></a>
</nav>
<div class="loader">
<div class="loader-logo">
<img src="favicon.png" class="loader-logo-image"></img>
<h1 class="loader-logo-title"> Yex </h1>
</div>
<div class="loader-bar"></div>
</div>
<div class="loaded-overlay"></div>
<h1><a class="yex">Yex</a></h1>
</a>
<div class="overlay-info">
<img src="favicon.png" class="prof" alt="Prof Pic" style="--clr-prof:#8515b1;"/>
<div class="overlay-container" style="--clr-prof:#8515b1;">
<div class="overlay-text"><a href="#"><i class="fab fa-github"></i></a></div>
</div>
</div>
<p style='font-size:1.2em;'> I am a developer who's fluent in Java, Kotlin, CSS, HTML, and JS. <br>
I live in Washington DC, Maryland, The United States of America.<br>
You can find my contacts on my disc profile through disc server.</p>
<h1><a class="lumi">Luminous Technologies</a></h1>
<div class="overlay-info">
<img src="ico.png" class="prof" alt="Prof Pic" style="--clr-prof:yellow;"/>
<div class="overlay-container" style="--clr-prof:yellow;">
<div class="overlay-text"><a href="#"><i class="fab fa-github"></i></a></div>
</div>
</div>
<p style='font-size:1.2em;'> We are a very small code organization that is based out of the US.<br> We currently have 2 members, including <a class="yex">Yex</a> (made this), and Alpha.<br> Our main projects are the MCPVP Client, Luminous and this website.
</p>
<script src="popper.js"></script>
<script src="tippy.js"></script>
<script src="snackbar.js"></script>
<script src="updown.js"></script>
<script>
document.getElementsByClassName('overlay-text')[0].children[0].href = "https://github.com/" + window.location.href.substring(8, 13);
document.getElementsByClassName('overlay-text')[1].children[0].href = "https://github.com/Luminous-Technologies";
</script>
</body>
</html>