Skip to content

Commit

Permalink
Merge pull request #1 from JaegerwaldDev/main
Browse files Browse the repository at this point in the history
Did Everything for the Placeholder
  • Loading branch information
TheZoidMaster authored Oct 21, 2024
2 parents 44f0ae3 + aaab784 commit 5d6fdc4
Show file tree
Hide file tree
Showing 4 changed files with 104 additions and 3 deletions.
2 changes: 2 additions & 0 deletions assets/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions assets/nexulien.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
60 changes: 57 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,64 @@
<html>
<head>
<meta charset="utf-8" />
<title>Zoidcord</title>
<title>Nexulien</title>
<style>
/* Bone Structure so the page doesnt flash white */
html {
display: block;
background-color: #222;
color: white;
font-family: sans-serif;
height: 100vh;
}
body {
width: 512px;
display: block;
margin-left: auto;
margin-right: auto;
margin-top: 64px;
}
a {
color: #0f9;
}
.logo-container {
display: flex;
flex-direction: row;
justify-content: center;
}
p.warning {
padding: 16px;
background-color: #fa04;
}
</style>
<link rel="stylesheet" href="src/css/style.css">
<link rel="preload" href="assets/logo.svg" as="image" type="image/svg">
<link rel="preload" href="assets/nexulien.svg" as="image" type="image/svg">
</head>
<body>
<h1>Work in Progress</h1>
<p>This page is currently under construction.</p>
<span class="logo-container">
<img src="assets/logo.svg" draggable="false" height="192px">
<img src="assets/nexulien.svg" draggable="false">
</span>
<p class="warning"><b>Hey!</b> This site is still undergoing active development.
For now, have this temporary site while we work on the main one.</p>
<h1>Links</h1>
<ul>
<li>GitHub Organization: <a href="https://github.com/Nexulien">https://github.com/Nexulien</a></li>
<li>Mod Repo: <a href="https://github.com/Nexulien/Nexulien">https://github.com/Nexulien/Nexulien</a></li>
<li>Installer Repo: <a href="https://github.com/Nexulien/Installer">https://github.com/Nexulien/Installer</a></li>
</ul>
<h1>Temporary API+ Documentation</h1>
<h2>Extra PluginDef features</h2>
<p>In a PluginDef, you get the extra parameter <code>nexulien</code>.
This value is used for the filter by "Nexulien-Exclusives" search.
If the plugin added is uniquely made for Nexulien, please set this to <code>true</code>!
Otherwise, you can ignore it (ex.: User Scripts).
</p>
<h2>Extra Slash Command features</h2>
<p>If you're on a dev-build, you can make extra debug commands that aren't visible on standalone.
You can easily make these "dev-commands" by just setting the <code>devOnly</code> parameter in the command to <code>true</code>!
</p>
<sub><p>Site made with ❤ by <a href="https://github.com/JaegerwaldDev">Jae</a></p></sub>
</body>
</html>
35 changes: 35 additions & 0 deletions src/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
.logo-container {
user-select: none;
}
*::selection {
background-color: #0f98;
}
p, li {
color: #ddd;
}
code {
padding: 4px;
padding-bottom: 1px;
padding-top: 1px;
border-radius: 4px;
background-color: #111;
}
sub {
text-align: center;
}
sub > p {
color: #888;
}

p.warning {
padding: 16px;
border-radius: 16px;
border: 1px solid #fa0;
background-color: #fa04;
}
p.warning::selection {
background-color: #fa0;
}
p.warning > *::selection {
background-color: #fa0;
}

0 comments on commit 5d6fdc4

Please sign in to comment.