Updated content and added Minecraft page
This commit is contained in:
parent
3eaef2ab70
commit
104d906983
@ -7,4 +7,6 @@ RUN rm -rf /etc/nginx/sites-enabled/default
|
||||
ADD nginx/ /etc/nginx/
|
||||
ADD www/ /var/html/www/
|
||||
|
||||
EXPOSE 80
|
||||
|
||||
ENTRYPOINT ["nginx"]
|
||||
|
9
www/LICENSE
Normal file
9
www/LICENSE
Normal file
@ -0,0 +1,9 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2024 FreedTapestry21
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
@ -26,7 +26,7 @@ body {
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 18px;
|
||||
font-size: 16px;
|
||||
color: var(--text-color);
|
||||
}
|
||||
|
||||
@ -50,6 +50,11 @@ footer p {
|
||||
}
|
||||
|
||||
/* Custom classes */
|
||||
.box {
|
||||
min-width: 80%;
|
||||
max-width: 90%;
|
||||
margin-inline: auto;
|
||||
}
|
||||
|
||||
.invert {
|
||||
background-color: var(--text-color);
|
||||
@ -63,10 +68,27 @@ footer p {
|
||||
|
||||
.tag {
|
||||
font-style: italic;
|
||||
font-size: 15px;
|
||||
font-size: 14px;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.no-select {
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.center {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.rule {
|
||||
font-size: 16px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.smoll {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.bold {font-weight: bold;}
|
||||
|
||||
.no-background a:hover {background-color: transparent;}
|
@ -8,9 +8,9 @@
|
||||
<meta name="format-detection" content="telephone=no">
|
||||
</head>
|
||||
<body>
|
||||
<div>
|
||||
<div style="text-align: center;">
|
||||
<img height="100vh" src="https://mirror.pixelated.sh/icons/pixelated/logo-512.png"></img>
|
||||
<div class="box">
|
||||
<div class="center no-background">
|
||||
<a href="/"><img height="100vh" src="https://mirror.pixelated.sh/icons/pixelated/logo-512.png"></img></a>
|
||||
</div>
|
||||
<p class="invert">About</p>
|
||||
<p>
|
||||
@ -19,22 +19,25 @@
|
||||
Welcome to Pixelated, we hope you enjoy your stay! <br>
|
||||
</p>
|
||||
</div>
|
||||
<div>
|
||||
|
||||
<div class="box">
|
||||
<p class="invert">Services</p>
|
||||
<p>
|
||||
<a href="https://social.pixelated.sh" target="_blank">> Sharkey: Our self-hosted fediverse instance.</a> <span class="tag">Social, Self-hosted</span><br>
|
||||
<a href="https://cloud.pixelated.sh" target="_blank">> Nextcloud: Our self-hosted Nextcloud instance.</a> <span class="tag">Cloud, Self-hosted</span><br>
|
||||
<a href="https://social.pixelated.sh" target="_blank">> Pixelated Universe: Our self-hosted fediverse instance.</a> <span class="tag">Social, Self-hosted</span><br>
|
||||
<a href="https://cloud.pixelated.sh" target="_blank">> Pixelated Galaxy: Our self-hosted Nextcloud instance.</a> <span class="tag">Cloud, Self-hosted</span><br>
|
||||
<a href="/minecraft">> Pixelated Arts And Crafts: Our self-hosted Minecraft: Java edition server.</a> <span class="tag">Games, Self-hosted</span><br>
|
||||
<a href="https://codeberg.org/pixelated" target="_blank">> Codeberg: Here you'll find all our Git repositories.</a> <span class="tag">Code</span><br>
|
||||
<a href="https://mirror.pixelated.sh/docs/services/MINECRAFT" target="_blank">> Minecraft: Our self-hosted Minecraft: Java edition server.</a> <span class="tag">Games, Self-hosted</span><br>
|
||||
</p>
|
||||
</div>
|
||||
<div>
|
||||
|
||||
<div class="box">
|
||||
<p class="invert">Members</p>
|
||||
<p>
|
||||
<a href="https://freed.place" target="_blank">> FreedTapestry21 (they/them)</a> <span class="tag">Founder and maintainer of Pixelated</span>
|
||||
</p>
|
||||
</div>
|
||||
<div>
|
||||
|
||||
<div class="box">
|
||||
<p class="invert">Contact</p>
|
||||
<p>
|
||||
Do you have any questions, inqueries, or have feedback? <br>
|
||||
@ -45,6 +48,10 @@
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="box">
|
||||
<p class="invert">:3</p>
|
||||
</div>
|
||||
|
||||
<footer>
|
||||
<p><a href="LICENSE" target="_blank">Copyright (c) 2024 FreedTapestry21</a><span class="no-select"> | </span><a href="https://mirror.pixelated.sh/docs/global/PRIVACY" target="_blank">Privacy policy</a></p>
|
||||
</footer>
|
||||
|
83
www/minecraft.html
Normal file
83
www/minecraft.html
Normal file
@ -0,0 +1,83 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Pixelated: Arts and Crafts</title>
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
<link rel="icon" type="image/x-icon" href="https://mirror.pixelated.sh/icons/pixelated/logo-512.png">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="format-detection" content="telephone=no">
|
||||
</head>
|
||||
<body>
|
||||
<div class="box">
|
||||
<div class="center no-background">
|
||||
<a href="/"><img height="100vh" src="https://mirror.pixelated.sh/icons/pixelated/logo-512.png"></img></a>
|
||||
</div>
|
||||
<p class="invert">Pixelated: Arts and Crafts</p>
|
||||
<p>
|
||||
A galaxy which once roamed with arts and crafts, is now nothing more then plain worlds. <br>
|
||||
Explore worlds full of wonders in which communities come together to create something unique. <br>
|
||||
With different worlds to explore and bewonder, join Arts and Crafts now and we will promise with 95% certainty that we won't reset the world. <br>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="box">
|
||||
<p class="invert">Servers</p>
|
||||
<p class="center">Join us at: <span class="bold">mc.pixelated.sh</span></p>
|
||||
<p>
|
||||
>> Silverleaf: Anarchy with a terraformed twist. <span class="tag">Public</span><br>
|
||||
>> Aethermist: Our <a href="https://www.greenfieldmc.net" target="_blank">Greenfield</a> instance. <span class="tag">Public</span><br>
|
||||
>> Frostbloom: Plain old survival with no twist whatsoever. <span class="tag">Invite-only</span><br>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="box">
|
||||
<p class="invert">Rules</p>
|
||||
<p class="smoll">
|
||||
<span class="rule">>> Respect Others</span> <br>
|
||||
<br>
|
||||
Treat everyone with kindness and respect, both in chat and gameplay. No harassment, bullying, or discriminatory behavior will be tolerated. <br>
|
||||
Be mindful of others' builds and creations. Always ask before modifying someone else's work or property. <br>
|
||||
<br>
|
||||
<span class="rule">>> No Cheating, Exploits, or Hacks</span> <br>
|
||||
<br>
|
||||
Using cheats, exploits, or hacks (such as x-ray mods, aimbots, or speed hacks) is strictly prohibited. Play fairly and responsibly. <br>
|
||||
Any form of unfair advantage, including but not limited to third-party software or bugs, is not allowed. <br>
|
||||
<br>
|
||||
<span class="rule">>> Griefing and Trolling</span> <br>
|
||||
<br>
|
||||
Griefing, stealing, and destroying other players' creations are not allowed. <br>
|
||||
Be respectful of others' time and effort in the game. Constructive behavior and collaboration are encouraged. <br>
|
||||
<br>
|
||||
<span class="rule">>> No Spamming or Excessive Advertising</span> <br>
|
||||
<br>
|
||||
Spamming messages, commands, or advertisements in chat is not allowed. <br>
|
||||
Keep the chat clean and clear. Please refrain from promoting external websites or services unless explicitly allowed by server staff. <br>
|
||||
<br>
|
||||
<span class="rule">>> No Offensive Content</span> <br>
|
||||
<br>
|
||||
Offensive language, hate speech, or inappropriate behavior (including in skins, builds, or usernames) is strictly prohibited. <br>
|
||||
Please remember that this server is for players of all ages, so keep the content family-friendly. <br>
|
||||
<br>
|
||||
<span class="rule">>> Respect the Server Staff</span> <br>
|
||||
<br>
|
||||
Listen to and respect the decisions of the server staff. They are here to help maintain order and ensure the server runs smoothly. <br>
|
||||
If you have any concerns or issues, please report them respectfully to a staff member. <br>
|
||||
<br>
|
||||
<span class="rule">>> Keep It Fun and Enjoyable!</span> <br>
|
||||
<br>
|
||||
Most importantly, have fun! This is a place to explore, create, and build with friends and fellow players. <br>
|
||||
Help foster a positive atmosphere where everyone can enjoy Minecraft to the fullest! <br>
|
||||
<br>
|
||||
<span class="rule">Have fun playing on Arts and Crafts!</span> <br>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="box">
|
||||
<p class="invert">:3</p>
|
||||
</div>
|
||||
|
||||
<footer>
|
||||
<p><a href="LICENSE" target="_blank">Copyright (c) 2024 FreedTapestry21</a><span class="no-select"> | </span><a href="https://mirror.pixelated.sh/docs/global/PRIVACY" target="_blank">Privacy policy</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
Loading…
x
Reference in New Issue
Block a user