This repository has been archived by the owner on Apr 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from RobertRR11/main
various small changes and improvements (see description)
- Loading branch information
Showing
7 changed files
with
140 additions
and
139 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,39 @@ | ||
body, html { | ||
overflow: hidden; | ||
margin: 0; | ||
height: 100%; | ||
position: relative; | ||
color: white; | ||
font-family: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; | ||
font-size: 25px; | ||
background-color: rgba(0, 31, 0, 0.5); | ||
} | ||
|
||
.bgimg { | ||
background-image: url('https://www.minecraft.net/content/dam/games/earth/key-art/SunsetMCE_KeyArt_1170_NoLogo.jpg'); | ||
filter: blur(10px); | ||
height: 100%; | ||
background-position: center; | ||
background-size: cover; | ||
} | ||
|
||
.middle { | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
text-align: center; | ||
} | ||
|
||
hr { | ||
margin: auto; | ||
width: 40%; | ||
} | ||
|
||
a { | ||
color: #5566ff; | ||
} | ||
|
||
a:hover { | ||
color: #5555ff; | ||
} |
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
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 |
---|---|---|
@@ -1,61 +1,61 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="icon" type="image/png" href="https://github.com/Project-Earth-Team.png" /> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="icon" type="image/png" href="https://github.com/Project-Earth-Team.png" /> | ||
|
||
<title>Project Earth</title> | ||
<title>Project Earth</title> | ||
|
||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css" integrity="sha512-HK5fgLBL+xu6dm/Ii3z4xhlSUyZgTT9tuc/hSrtw6uzJOvgRr2a9jyxxT1ely+B+xFAmJKVSTbpM/CuL7qxO8w==" crossorigin="anonymous" /> | ||
<link rel='stylesheet' type='text/css' media='screen' href='main.css'> | ||
</head> | ||
<body> | ||
<div id="header-wrapper" class="h-100"> | ||
<div id="header" class="h-100 d-flex align-items-center"> | ||
<div class="w-100 text-center"> | ||
<img id="logo" class="d-inline-flex" src="https://github.com/Project-Earth-Team.png" alt="Project Earth logo"/> | ||
<h1 id="title" class="d-inline-flex mb-0 align-middle">Project Earth</h1> | ||
<h3 class="text-center" id="subtitle">Sustaining Minecraft Earth, beyond the Sunset.</h3> | ||
</div> | ||
</div> | ||
<a id="down" type="button" href="#what" class="btn btn-primary btn-lg rounded-circle js-scroll-trigger"><i class="fas fa-angle-down"></i></a> | ||
</div> | ||
<div class="align-items-center p-5 row bg-light w-100 m-0" id="what"> | ||
<div class="col align-middle"> | ||
<h1>What is Project Earth?</h1> | ||
<p>We're recreating the server system for Minecraft Earth, and also <em>slightly</em> modding the client to allow for you to join the custom server. This allows for anyone who wants to to continue playing the game by importing their data into our servers, and lets people pick up where they left off after the official servers close.</p> | ||
</div> | ||
<div class="col text-center"> | ||
<img src="modded.png" class="filler"> | ||
</div> | ||
</div> | ||
<div class="align-items-center p-5 row bg-dark w-100 m-0" id="how"> | ||
<div class="col text-center"> | ||
<img src="devmenu_a.png" class="filler"> | ||
</div> | ||
<div class="col align-middle text-light"> | ||
<h1>How Does It Work?</h1> | ||
<p>We run our homemade Project Earth API (currently closed source, but will be open shortly) in combination with our custom server implementation using <a href="https://github.com/CloudburstMC/Protocol">CloudburstMC/Protocol</a> to run the server side parts of Minecraft Earth. We then patch the app so that it connects to our server instead of the official server.</p> | ||
</div> | ||
</div> | ||
<div class="p-5 row w-100 m-0" style="background-color: #447781!important;"> | ||
<div class="col text-center text-black-50 fs-2"> | ||
<a href="https://discord.gg/Te8PudYZJV" class="text-white"><i class="fab fa-discord fa-fw"></i></a> | ||
• | ||
<a href="https://twitter.com/ProjectEarthDev" class="text-white"><i class="fab fa-twitter fa-fw"></i></a> | ||
• | ||
<a href="https://reddit.com/r/ProjectEarth" class="text-white"><i class="fab fa-reddit-alien fa-fw"></i></a> | ||
</div> | ||
</div> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css" integrity="sha512-HK5fgLBL+xu6dm/Ii3z4xhlSUyZgTT9tuc/hSrtw6uzJOvgRr2a9jyxxT1ely+B+xFAmJKVSTbpM/CuL7qxO8w==" crossorigin="anonymous" /> | ||
<link rel='stylesheet' type='text/css' media='screen' href='main.css'> | ||
</head> | ||
<body> | ||
<div id="header-wrapper" class="h-100"> | ||
<div id="header" class="h-100 d-flex align-items-center"> | ||
<div class="w-100 text-center"> | ||
<img id="logo" class="d-inline-flex" src="https://github.com/Project-Earth-Team.png" alt="Project Earth logo"/> | ||
<h1 id="title" class="d-inline-flex mb-0 align-middle">Project Earth</h1> | ||
<h3 class="text-center" id="subtitle">Sustaining Minecraft Earth, beyond the Sunset.</h3> | ||
</div> | ||
</div> | ||
<a id="down" type="button" href="#what" class="btn btn-primary btn-lg rounded-circle js-scroll-trigger"><i class="fas fa-angle-down"></i></a> | ||
</div> | ||
<div class="align-items-center p-5 row bg-light w-100 m-0" id="what"> | ||
<div class="col align-middle"> | ||
<h1>What is Project Earth?</h1> | ||
<p>We're recreating the server system for Minecraft Earth, and also <em>slightly</em> modding the client to allow for you to join the custom server. This allows for anyone who wants to to continue playing the game by importing their data into our servers, and lets people pick up where they left off after the official servers close.</p> | ||
</div> | ||
<div class="col text-center"> | ||
<img src="modded.png" class="filler"> | ||
</div> | ||
</div> | ||
<div class="align-items-center p-5 row bg-dark w-100 m-0" id="how"> | ||
<div class="col text-center"> | ||
<img src="devmenu_a.png" class="filler"> | ||
</div> | ||
<div class="col align-middle text-light"> | ||
<h1>How Does It Work?</h1> | ||
<p>We run our homemade Project Earth API (currently closed source, but will be open shortly) in combination with our custom server implementation using <a href="https://github.com/CloudburstMC/Protocol">CloudburstMC/Protocol</a> to run the server side parts of Minecraft Earth. We then patch the app so that it connects to our server instead of the official server.</p> | ||
</div> | ||
</div> | ||
<div class="p-5 row w-100 m-0" style="background-color: #447781!important;"> | ||
<div class="col text-center text-black-50 fs-2"> | ||
<a href="https://discord.gg/Te8PudYZJV" class="text-white"><i class="fab fa-discord fa-fw"></i></a> | ||
• | ||
<a href="https://twitter.com/ProjectEarthDev" class="text-white"><i class="fab fa-twitter fa-fw"></i></a> | ||
• | ||
<a href="https://reddit.com/r/ProjectEarth" class="text-white"><i class="fab fa-reddit-alien fa-fw"></i></a> | ||
</div> | ||
</div> | ||
|
||
<a class="scroll-to-top rounded js-scroll-trigger" href="#"> | ||
<i class="fas fa-angle-up"></i> | ||
</a> | ||
<a class="scroll-to-top rounded js-scroll-trigger" href="#"> | ||
<i class="fas fa-angle-up"></i> | ||
</a> | ||
|
||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-KsvD1yqQ1/1+IA7gi3P0tyJcT3vR+NdBTt13hSJ2lnve8agRGXTTyNaBYmCR/Nwi" crossorigin="anonymous"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-nsg8ua9HAw1y0W1btsyWgBklPnCUAFLuTMS2G72MMONqmOymq585AcH49TLBQObG" crossorigin="anonymous"></script> | ||
<script src="main.js"></script> | ||
</body> | ||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-KsvD1yqQ1/1+IA7gi3P0tyJcT3vR+NdBTt13hSJ2lnve8agRGXTTyNaBYmCR/Nwi" crossorigin="anonymous"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-nsg8ua9HAw1y0W1btsyWgBklPnCUAFLuTMS2G72MMONqmOymq585AcH49TLBQObG" crossorigin="anonymous"></script> | ||
<script src="main.js"></script> | ||
</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 |
---|---|---|
@@ -1,83 +1,83 @@ | ||
html, body { | ||
height: 100%; | ||
height: 100%; | ||
} | ||
|
||
div#header-wrapper { | ||
background-image: url(https://www.minecraft.net/content/dam/games/earth/key-art/SunsetMCE_KeyArt_1170_NoLogo.jpg); | ||
background-size: cover; | ||
background-position: center | ||
background-image: url(https://www.minecraft.net/content/dam/games/earth/key-art/SunsetMCE_KeyArt_1170_NoLogo.jpg); | ||
background-size: cover; | ||
background-position: center; | ||
} | ||
|
||
div#header { | ||
background-color: rgba(0, 0, 0, 0.25); | ||
backdrop-filter: blur(10px); | ||
background-color: rgba(0, 0, 0, 0.25); | ||
backdrop-filter: blur(10px); | ||
} | ||
|
||
img#logo { | ||
height: 10rem; | ||
height: 10rem; | ||
} | ||
|
||
#title, #subtitle { | ||
color: #fff; | ||
color: #fff; | ||
} | ||
|
||
#title { | ||
font-size: 5rem; | ||
font-size: 5rem; | ||
} | ||
|
||
.section { | ||
height: 20%; | ||
height: 20%; | ||
} | ||
|
||
img.filler { | ||
max-height: 40rem; | ||
max-width: 100%; | ||
max-height: 40rem; | ||
max-width: 100%; | ||
} | ||
|
||
pre { | ||
display: inline; | ||
display: inline; | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
text-decoration: none; | ||
} | ||
|
||
.scroll-to-top { | ||
position: fixed; | ||
right: 15px; | ||
bottom: 15px; | ||
display: inline; | ||
width: 50px; | ||
height: 50px; | ||
text-align: center; | ||
color: #fff; | ||
background: rgba(52,58,64,.5); | ||
line-height: 45px; | ||
transition: opacity 0.5s; | ||
opacity: 0; | ||
visibility: hidden; | ||
position: fixed; | ||
right: 15px; | ||
bottom: 15px; | ||
display: inline; | ||
width: 50px; | ||
height: 50px; | ||
text-align: center; | ||
color: #fff; | ||
background: rgba(52,58,64,.5); | ||
line-height: 45px; | ||
transition: opacity 0.5s; | ||
opacity: 0; | ||
visibility: hidden; | ||
} | ||
|
||
.scroll-to-top.show { | ||
opacity: 1; | ||
visibility: visible; | ||
opacity: 1; | ||
visibility: visible; | ||
} | ||
|
||
.scroll-to-top:focus,.scroll-to-top:hover { | ||
color: #fff | ||
color: #fff; | ||
} | ||
|
||
.scroll-to-top:hover { | ||
background: #343a40 | ||
background: #343a40; | ||
} | ||
|
||
.scroll-to-top i { | ||
font-weight: 800 | ||
font-weight: 800; | ||
} | ||
|
||
a#down { | ||
position: absolute; | ||
bottom: 50px; | ||
left: 50%; | ||
transform: translateX(-50%); | ||
position: absolute; | ||
bottom: 50px; | ||
left: 50%; | ||
transform: translateX(-50%); | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.