From aaab784c9f234ff272dcb01354c525bfa1563d5e Mon Sep 17 00:00:00 2001 From: JaegerwaldDev <86529399+JaegerwaldDev@users.noreply.github.com> Date: Mon, 21 Oct 2024 10:40:55 +0200 Subject: [PATCH] Did Everything for the Placeholder --- assets/logo.svg | 2 ++ assets/nexulien.svg | 10 ++++++++ index.html | 60 ++++++++++++++++++++++++++++++++++++++++++--- src/css/style.css | 35 ++++++++++++++++++++++++++ 4 files changed, 104 insertions(+), 3 deletions(-) create mode 100644 assets/logo.svg create mode 100644 assets/nexulien.svg create mode 100644 src/css/style.css diff --git a/assets/logo.svg b/assets/logo.svg new file mode 100644 index 0000000..0c80273 --- /dev/null +++ b/assets/logo.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/assets/nexulien.svg b/assets/nexulien.svg new file mode 100644 index 0000000..10f3240 --- /dev/null +++ b/assets/nexulien.svg @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/index.html b/index.html index 9811432..0c254c5 100644 --- a/index.html +++ b/index.html @@ -2,10 +2,64 @@ - Zoidcord + Nexulien + + + + -

Work in Progress

-

This page is currently under construction.

+ + + + +

Hey! This site is still undergoing active development. + For now, have this temporary site while we work on the main one.

+

Links

+ +

Temporary API+ Documentation

+

Extra PluginDef features

+

In a PluginDef, you get the extra parameter nexulien. + This value is used for the filter by "Nexulien-Exclusives" search. + If the plugin added is uniquely made for Nexulien, please set this to true! + Otherwise, you can ignore it (ex.: User Scripts). +

+

Extra Slash Command features

+

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 devOnly parameter in the command to true! +

+

Site made with ❤ by Jae

diff --git a/src/css/style.css b/src/css/style.css new file mode 100644 index 0000000..b19a8e5 --- /dev/null +++ b/src/css/style.css @@ -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; +} \ No newline at end of file