-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deploying to website from @ d5f33ac 🚀
- Loading branch information
Showing
15 changed files
with
2,687 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
/* Typography */ | ||
@font-face { | ||
font-family: DM Sans; | ||
font-style: normal; | ||
font-weight: 700; | ||
src: local("DM Sans Bold"), local("DMSans-Bold"), url(dm-sans-bold.woff2) format("woff2"); | ||
} | ||
h1, h2, h3, h4, h5, h6 { | ||
font-family: "DM Sans"; | ||
} | ||
.fancy { | ||
color: transparent; | ||
background: linear-gradient(to right, #d78dd2, #b999ee, #9da5e9, #8fa9f0); | ||
background-clip: text; | ||
} | ||
a { | ||
text-decoration: none; | ||
color: #d78dd2; | ||
} | ||
a:hover { | ||
text-decoration: underline; | ||
text-decoration-color: #d78dd2; | ||
} | ||
section.hero a, section.hero p { | ||
text-decoration: none !important; | ||
color: #c2c7d0; | ||
} | ||
.tiny { | ||
font-size: 0.5em; | ||
margin: 0; | ||
} | ||
|
||
/* General adjustments */ | ||
::selection { | ||
background: #d78dd255; | ||
} | ||
html { | ||
scrollbar-width: thin; | ||
scrollbar-color: var(--pico-muted-border-color) var(--pico-card-background-color); | ||
} | ||
nav.main { | ||
border-bottom: 1px solid var(--pico-muted-border-color); | ||
} | ||
nav.main button.outline { | ||
height: calc(1rem * var(--pico-line-height) + var(--pico-nav-link-spacing-vertical) * 2); | ||
margin: calc(var(--pico-nav-element-spacing-vertical)* -1) 0; | ||
} | ||
nav.main details.dropdown { | ||
margin: 0; | ||
} | ||
article p:last-child, article ul:last-child, article ol:last-child { | ||
margin-bottom: 0; | ||
} | ||
img { | ||
border-radius: 0.5rem; | ||
} | ||
|
||
/* center, except on mobile */ | ||
.center { | ||
text-align: center; | ||
} | ||
@media (max-width:768px) | ||
{ | ||
.center { | ||
text-align: left; | ||
} | ||
} | ||
/* no inline on mobile */ | ||
@media (max-width:768px) | ||
{ | ||
.mobile-block { | ||
display: block; | ||
} | ||
} | ||
/* hidden on mobile */ | ||
@media (max-width:768px) | ||
{ | ||
.mobile-hide { | ||
display: none; | ||
} | ||
} | ||
|
||
/* Spacer */ | ||
div.spacer { | ||
height: 8vh; | ||
} | ||
|
||
/* Listing cards */ | ||
article.inactive { | ||
background: radial-gradient(at left top, #72170F, #360940); | ||
} | ||
article.warning { | ||
border: #72170F 2px dashed; | ||
} | ||
article.note { | ||
border: #8fa9f0 2px dashed; | ||
} | ||
|
||
/* Hero colored cards */ | ||
section.hero article { | ||
transition: all 0.3s ease-in-out; | ||
} | ||
section.hero article:hover { | ||
filter: brightness(1.3) saturate(1.3); | ||
} | ||
article.java-vanilla, article.bedrock-vanilla { | ||
background: radial-gradient(at left top, #cacc9d22 0%, var(--pico-card-background-color) 70%); | ||
} | ||
article.java-plugins, article.bedrock-plugins { | ||
background: radial-gradient(at left top, #1289D222, var(--pico-card-background-color) 70%); | ||
} | ||
article.java-mods { | ||
background: radial-gradient(at left top, #E66D3A22, var(--pico-card-background-color) 70%); | ||
} | ||
article.java-hybrid { | ||
background: radial-gradient(at left top, #ff625a22, var(--pico-card-background-color) 70%); | ||
} | ||
article.java-proxies, article.bedrock-proxies { | ||
background: radial-gradient(at left top, #6200ff22, var(--pico-card-background-color) 70%); | ||
} | ||
article.java-regionized { | ||
background: radial-gradient(at left top, #00ff1122, var(--pico-card-background-color) 70%); | ||
} | ||
article.miscellaneous { | ||
background: radial-gradient(at left top, #00ff9522, var(--pico-card-background-color) 70%); | ||
} |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,159 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta name="color-scheme" content="dark" /> | ||
|
||
<title>Minecraft Server Softwares</title> | ||
<meta name="description" content="🗃️ Minecraft Server Softwares provides you with a list of server softwares for Minecraft."> | ||
<meta name="keywords" content="minecraft, server, software, softwares, list, vanilla, plugins, mods, hybrid, proxies, regionized, bedrock, java"> | ||
|
||
<link rel="icon" href=".././assets/favicon.svg"> | ||
<!-- favicon.svg, originally 1f5c3.svg ("Card File Box" emoji) by Twitter (X) is CC-BY-4.0 licensed: https://github.com/twitter/twemoji/blob/master/LICENSE-GRAPHICS. Alterations: Minified SVG. Original: https://github.com/twitter/twemoji/blob/master/assets/svg/1f5c3.svg --> | ||
|
||
<link rel="stylesheet" href=".././assets/pico.css"> | ||
<link rel="stylesheet" href=".././assets/custom.css"> | ||
</head> | ||
|
||
<body> | ||
|
||
<header class="container"> | ||
|
||
<nav class="main"> | ||
<ul> | ||
<li> | ||
<h1><a href=".././">🗃️ <span class="fancy">Minecraft Server Softwares</span></a></h1> | ||
</li> | ||
</ul> | ||
<ul> | ||
<li><a href=".././#recommended"><button class="outline">Recommended</button></a></li> | ||
<li> | ||
<details class="dropdown"> | ||
<summary>Java</summary> | ||
<ul dir="rtl"> | ||
<li><a href=".././java-vanilla/">Vanilla</a></li> | ||
<li><a href=".././java-plugins/">Plugins</a></li> | ||
<li><a href=".././java-mods/">Mods</a></li> | ||
<li><a href=".././java-hybrid/">Hybrid</a></li> | ||
<li><a href=".././java-proxies/">Proxies</a></li> | ||
<li><a href=".././java-regionized/">Regionized</a></li> | ||
</ul> | ||
</details> | ||
</li> | ||
<li> | ||
<details class="dropdown"> | ||
<summary>Bedrock</summary> | ||
<ul dir="rtl"> | ||
<li><a href=".././bedrock-vanilla/">Vanilla</a></li> | ||
<li><a href=".././bedrock-plugins/">Plugins</a></li> | ||
<li><a href=".././bedrock-proxies/">Proxies</a></li> | ||
</ul> | ||
</details> | ||
</li> | ||
<li> | ||
<a href="https://github.com/LeStegii/server-softwares"><img src="https://github.githubassets.com/favicons/favicon-dark.svg" alt="GitHub"></a> | ||
</li> | ||
</ul> | ||
</nav> | ||
|
||
</header> | ||
<main class="container"> | ||
|
||
<h3>Bedrock Plugins</h3> | ||
|
||
<article><h5><a href="https://github.com/CloudburstMC/Nukkit" id="-nukkit-nukkitx">☢️ Nukkit (NukkitX)</a></h5> | ||
<ul> | ||
<li><strong>Author:</strong> CloudburstMC</li> | ||
<li><strong>Fork:</strong> Nukkit ➜ NukkitX</li> | ||
<li><strong>Description:</strong> Server software for Minecraft: Pocket Edition written in Java.</li> | ||
<li><strong>Plugins:</strong> Nukkit</li> | ||
<li><strong>Addons:</strong> ❌</li> | ||
</ul></article><article><h5><a href="https://github.com/LiteLDev/LiteLoaderBDS" id="-liteloader-bds">💨 LiteLoader BDS</a></h5> | ||
<ul> | ||
<li><strong>Author:</strong> LiteLDev</li> | ||
<li><strong>Fork:</strong> ?</li> | ||
<li><strong>Description:</strong> An unofficial plugin loader that provides basic API support for Bedrock Dedicated Server.</li> | ||
<li><strong>Plugins:</strong> LiteLoaderAPI (C++, JS, Lua, C#)</li> | ||
<li><strong>Addons:</strong> ❌</li> | ||
</ul></article><article><h5><a href="https://github.com/pmmp/PocketMine-MP" id="-pocketmine-mp">💠 PocketMine-MP</a></h5> | ||
<ul> | ||
<li><strong>Author:</strong> pmmp</li> | ||
<li><strong>Fork:</strong> ?</li> | ||
<li><strong>Description:</strong> Server software for Minecraft: Bedrock Edition written in PHP.</li> | ||
<li><strong>Plugins:</strong> PocketMine</li> | ||
<li><strong>Addons:</strong> ❌</li> | ||
</ul></article><article><h5><a href="https://github.com/df-mc/dragonfly" id="-dragonfly">🦋 Dragonfly</a></h5> | ||
<ul> | ||
<li><strong>Author:</strong> df-mc</li> | ||
<li><strong>Fork:</strong> ?</li> | ||
<li><strong>Description:</strong> A heavily asynchronous server software for Minecraft Bedrock Edition written in Go.</li> | ||
<li><strong>Plugins:</strong> Dragonfly API</li> | ||
<li><strong>Addons:</strong> ❌</li> | ||
</ul></article> | ||
|
||
<div class="spacer"></div> | ||
|
||
<article class="inactive"> | ||
<h3>⚠️ Inactive Development</h3> | ||
<p>The following projects are no longer being actively developed. They may still be useful, but they aren't supported and most likely contain security vulnerabilities, like Log4Shell.</p> | ||
</article> | ||
<article class="warning"><h5><a href="https://github.com/Nukkit/Nukkit" id="-nukkit">⚛️ Nukkit</a></h5> | ||
<ul> | ||
<li><strong>Alternative:</strong> NukkitX/Cloudburst</li> | ||
<li><strong>Author:</strong> Nukkit</li> | ||
<li><strong>Fork:</strong> ?</li> | ||
<li><strong>Description:</strong> Server software for Minecraft: Pocket Edition written in Java.</li> | ||
<li><strong>Plugins:</strong> Nukkit</li> | ||
<li><strong>Addons:</strong> ❌</li> | ||
</ul></article><article class="warning"><h5><a href="https://github.com/gomint/gomint" id="-gomint">🍃 GoMint</a></h5> | ||
<ul> | ||
<li><strong>Author:</strong> gomint</li> | ||
<li><strong>Fork:</strong> ?</li> | ||
<li><strong>Description:</strong> GoMint is a modern Minecraft Bedrock Edition server written in Java.</li> | ||
<li><strong>Plugins:</strong> GoMint </li> | ||
<li><strong>Addons:</strong> ❌</li> | ||
</ul></article><article class="warning"><h5><a href="https://github.com/NiclasOlofsson/MiNET" id="-minet">✳ MiNET</a></h5> | ||
<ul> | ||
<li><strong>Author:</strong> NiclasOlofsson</li> | ||
<li><strong>Fork:</strong> ?</li> | ||
<li><strong>Description:</strong> A (not so) basic Minecraft Pocket Edition server written in C#.</li> | ||
<li><strong>Plugins:</strong> .NET</li> | ||
<li><strong>Addons:</strong> ❌</li> | ||
</ul></article><article class="warning"><h5><a href="https://powernukkit.org/" id="-powernukkit-powernukkitx">🔴 PowerNukkit (PowerNukkitX)</a></h5> | ||
<ul> | ||
<li><strong>Author:</strong> PowerNukkit</li> | ||
<li><strong>Fork:</strong> Nukkit ➜ NukkitX ➜ PowerNukkit</li> | ||
<li><strong>Description:</strong> Advanced fork of NukkitX with support for Pistons, Water-logging and much more.</li> | ||
<li><strong>Plugins:</strong> Nukkit</li> | ||
<li><strong>Addons:</strong> ❌</li> | ||
</ul></article><article class="warning"><h5><a href="https://github.com/CloudburstMC/Server" id="-cloudburst">☁️ Cloudburst</a></h5> | ||
<ul> | ||
<li><strong>Author:</strong> CloudburstMC</li> | ||
<li><strong>Fork:</strong> Nukkit/NukkitX ➜ Cloudburst</li> | ||
<li><strong>Description:</strong> Server software for Minecraft: Bedrock Edition written in Java.</li> | ||
<li><strong>Plugins:</strong> Nukkit</li> | ||
<li><strong>Addons:</strong> ❌</li> | ||
</ul></article> | ||
|
||
|
||
</main> | ||
<footer class="container"> | ||
<hr> | ||
<div class="center"> | ||
<h6 style="display: inline;">🗃️ <span class="fancy">Minecraft Server Softwares</span></h6> is <a href="https://github.com/LeStegii/server-softwares">open source</a>. | ||
<p class="tiny">Not an official Minecraft product or service. Not approved by or associated with Mojang or Microsoft.</p> | ||
<small> | ||
<span class="mobile-block">All Rights Reserved © <a href="https://github.com/LeStegii/server-softwares/graphs/contributors">LeStegii & contributors</a></span> | ||
<span class="mobile-hide"> — </span> | ||
<span class="mobile-block">Data updated on <a href="https://github.com/LeStegii/server-softwares/commits/master/">2024-05-31</a></span> | ||
<span class="mobile-hide"> — </span> | ||
<span class="mobile-block">lunofe/mcss-frontend@<a href="https://github.com/lunofe/mcss-frontend/commits/main">ddeb3b4</a></span> | ||
</small> | ||
</div> | ||
</footer> | ||
|
||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta name="color-scheme" content="dark" /> | ||
|
||
<title>Minecraft Server Softwares</title> | ||
<meta name="description" content="🗃️ Minecraft Server Softwares provides you with a list of server softwares for Minecraft."> | ||
<meta name="keywords" content="minecraft, server, software, softwares, list, vanilla, plugins, mods, hybrid, proxies, regionized, bedrock, java"> | ||
|
||
<link rel="icon" href=".././assets/favicon.svg"> | ||
<!-- favicon.svg, originally 1f5c3.svg ("Card File Box" emoji) by Twitter (X) is CC-BY-4.0 licensed: https://github.com/twitter/twemoji/blob/master/LICENSE-GRAPHICS. Alterations: Minified SVG. Original: https://github.com/twitter/twemoji/blob/master/assets/svg/1f5c3.svg --> | ||
|
||
<link rel="stylesheet" href=".././assets/pico.css"> | ||
<link rel="stylesheet" href=".././assets/custom.css"> | ||
</head> | ||
|
||
<body> | ||
|
||
<header class="container"> | ||
|
||
<nav class="main"> | ||
<ul> | ||
<li> | ||
<h1><a href=".././">🗃️ <span class="fancy">Minecraft Server Softwares</span></a></h1> | ||
</li> | ||
</ul> | ||
<ul> | ||
<li><a href=".././#recommended"><button class="outline">Recommended</button></a></li> | ||
<li> | ||
<details class="dropdown"> | ||
<summary>Java</summary> | ||
<ul dir="rtl"> | ||
<li><a href=".././java-vanilla/">Vanilla</a></li> | ||
<li><a href=".././java-plugins/">Plugins</a></li> | ||
<li><a href=".././java-mods/">Mods</a></li> | ||
<li><a href=".././java-hybrid/">Hybrid</a></li> | ||
<li><a href=".././java-proxies/">Proxies</a></li> | ||
<li><a href=".././java-regionized/">Regionized</a></li> | ||
</ul> | ||
</details> | ||
</li> | ||
<li> | ||
<details class="dropdown"> | ||
<summary>Bedrock</summary> | ||
<ul dir="rtl"> | ||
<li><a href=".././bedrock-vanilla/">Vanilla</a></li> | ||
<li><a href=".././bedrock-plugins/">Plugins</a></li> | ||
<li><a href=".././bedrock-proxies/">Proxies</a></li> | ||
</ul> | ||
</details> | ||
</li> | ||
<li> | ||
<a href="https://github.com/LeStegii/server-softwares"><img src="https://github.githubassets.com/favicons/favicon-dark.svg" alt="GitHub"></a> | ||
</li> | ||
</ul> | ||
</nav> | ||
|
||
</header> | ||
<main class="container"> | ||
|
||
<h3>Bedrock Proxies</h3> | ||
|
||
<article><h5><a href="https://github.com/WaterdogPE/WaterdogPE" id="-waterdogpe">🐕 WaterdogPE</a></h5> | ||
<ul> | ||
<li><strong>Author:</strong> WaterdogPE</li> | ||
<li><strong>Fork:</strong> ?</li> | ||
<li><strong>Description:</strong> Proxy for Minecraft Bedrock.</li> | ||
</ul></article> | ||
<!-- | ||
<div class="spacer"></div> | ||
<article class="inactive"> | ||
<h3>⚠️ Inactive Development</h3> | ||
<p>The following projects are no longer being actively developed. They may still be useful, but they aren't supported and most likely contain security vulnerabilities, like Log4Shell.</p> | ||
</article> | ||
--> | ||
|
||
</main> | ||
<footer class="container"> | ||
<hr> | ||
<div class="center"> | ||
<h6 style="display: inline;">🗃️ <span class="fancy">Minecraft Server Softwares</span></h6> is <a href="https://github.com/LeStegii/server-softwares">open source</a>. | ||
<p class="tiny">Not an official Minecraft product or service. Not approved by or associated with Mojang or Microsoft.</p> | ||
<small> | ||
<span class="mobile-block">All Rights Reserved © <a href="https://github.com/LeStegii/server-softwares/graphs/contributors">LeStegii & contributors</a></span> | ||
<span class="mobile-hide"> — </span> | ||
<span class="mobile-block">Data updated on <a href="https://github.com/LeStegii/server-softwares/commits/master/">2024-05-31</a></span> | ||
<span class="mobile-hide"> — </span> | ||
<span class="mobile-block">lunofe/mcss-frontend@<a href="https://github.com/lunofe/mcss-frontend/commits/main">ddeb3b4</a></span> | ||
</small> | ||
</div> | ||
</footer> | ||
|
||
</body> | ||
|
||
</html> |
Oops, something went wrong.