mirror of
https://github.com/OxyZin/LegacyConsoleLauncher.git
synced 2026-07-18 01:41:16 +00:00
website
This commit is contained in:
BIN
docs/Assets/dirt.png
Normal file
BIN
docs/Assets/dirt.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.0 KiB |
BIN
docs/Assets/favicon.ico
Normal file
BIN
docs/Assets/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.2 KiB |
BIN
docs/Assets/launcher.png
Normal file
BIN
docs/Assets/launcher.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 123 KiB |
BIN
docs/Assets/logo.png
Normal file
BIN
docs/Assets/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.9 KiB |
BIN
docs/Assets/steve.webp
Normal file
BIN
docs/Assets/steve.webp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 7.5 KiB |
BIN
docs/Assets/stone.png
Normal file
BIN
docs/Assets/stone.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 434 B |
104
docs/index.html
Normal file
104
docs/index.html
Normal file
@@ -0,0 +1,104 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Legacy Console Launcher</title>
|
||||
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
<link rel="icon" href="Assets/favicon.ico">
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<header>
|
||||
|
||||
<div class="logo">
|
||||
<img src="Assets/logo.png">
|
||||
</div>
|
||||
|
||||
<nav>
|
||||
<a href="#">Home</a>
|
||||
<a href="#">About</a>
|
||||
<a href="https://github.com/OxyZin/LegacyConsoleLauncher/?tab=readme-ov-file#features">Features</a>
|
||||
<a href="https://github.com/OxyZin/LegacyConsoleLauncher/releases/">Download</a>
|
||||
<a href="https://github.com/OxyZin/LegacyConsoleLauncher/">Source</a>
|
||||
</nav>
|
||||
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div class="content">
|
||||
|
||||
<div class="left">
|
||||
|
||||
<div class="screenshot">
|
||||
<img src="Assets/launcher.png">
|
||||
</div>
|
||||
|
||||
<p>
|
||||
<strong>Legacy Console Launcher</strong> is a simple and lightweight launcher for the
|
||||
PC port of Minecraft Legacy Console Edition.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
It was created to make launching and managing the game easier while keeping
|
||||
everything clean, fast, and easy to use.
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="right">
|
||||
|
||||
<img class="steve" src="Assets/steve.webp">
|
||||
|
||||
<a href="https://github.com/OxyZin/LegacyConsoleLauncher/releases">
|
||||
<button class="play">Download Launcher</button>
|
||||
</a>
|
||||
|
||||
<p class="info">
|
||||
Free • Open Source • Windows
|
||||
</p>
|
||||
|
||||
<p class="info2">
|
||||
Supports Windows 7 – Windows 11
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<section class="features">
|
||||
|
||||
<h2>Features</h2>
|
||||
|
||||
<ul>
|
||||
<li>Fast and lightweight launcher</li>
|
||||
<li>Automatic updates from GitHub</li>
|
||||
<li>Instance support for multiple game setups</li>
|
||||
<li>Simple and clean interface</li>
|
||||
<li>Works on Windows 7 to Windows 11</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</section>
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
|
||||
<p>
|
||||
Legacy Console Launcher is an independent project and is not affiliated with Mojang or Microsoft.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Source available on GitHub.
|
||||
</p>
|
||||
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
152
docs/styles.css
Normal file
152
docs/styles.css
Normal file
@@ -0,0 +1,152 @@
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
color: white;
|
||||
|
||||
background: #1a1a1a;
|
||||
background-image: url("Assets/stone.png");
|
||||
}
|
||||
|
||||
header {
|
||||
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
padding: 3px 25px;
|
||||
|
||||
background-image: url("Assets/dirt.png");
|
||||
background-repeat: repeat;
|
||||
background-size: 64px;
|
||||
|
||||
border-bottom: 2px solid #000;
|
||||
|
||||
}
|
||||
|
||||
.logo img {
|
||||
height: 40px;
|
||||
padding-top: 10px;
|
||||
margin-right: 30px;
|
||||
}
|
||||
|
||||
nav a {
|
||||
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
margin-right: 18px;
|
||||
font-weight: bold;
|
||||
font-size: 14px;
|
||||
|
||||
}
|
||||
|
||||
nav a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
main {
|
||||
|
||||
max-width: 1100px;
|
||||
margin: auto;
|
||||
padding: 40px;
|
||||
|
||||
}
|
||||
|
||||
.content {
|
||||
|
||||
display: flex;
|
||||
gap: 60px;
|
||||
|
||||
}
|
||||
|
||||
.left {
|
||||
|
||||
flex: 2;
|
||||
|
||||
}
|
||||
|
||||
.screenshot img {
|
||||
|
||||
width: 100%;
|
||||
border: 3px solid #000;
|
||||
|
||||
}
|
||||
|
||||
.left p {
|
||||
|
||||
font-size: 14px;
|
||||
line-height: 1.6;
|
||||
color: #ddd;
|
||||
|
||||
}
|
||||
|
||||
.right {
|
||||
|
||||
flex: 1;
|
||||
text-align: center;
|
||||
|
||||
}
|
||||
|
||||
.steve {
|
||||
padding-top: 70px;
|
||||
width: 260px;
|
||||
margin-bottom: 20px;
|
||||
|
||||
}
|
||||
|
||||
.play {
|
||||
|
||||
background: #d9822b;
|
||||
border: none;
|
||||
|
||||
padding: 14px 40px;
|
||||
|
||||
font-size: 20px;
|
||||
font-weight: bold;
|
||||
|
||||
color: white;
|
||||
|
||||
border-radius: 6px;
|
||||
|
||||
cursor: pointer;
|
||||
|
||||
}
|
||||
|
||||
.play:hover {
|
||||
|
||||
background: #c77425;
|
||||
|
||||
}
|
||||
|
||||
.dot {
|
||||
|
||||
height: 10px;
|
||||
width: 10px;
|
||||
|
||||
background: #00ff55;
|
||||
|
||||
border-radius: 50%;
|
||||
|
||||
display: inline-block;
|
||||
|
||||
margin-right: 8px;
|
||||
|
||||
}
|
||||
|
||||
footer {
|
||||
|
||||
margin-top: 60px;
|
||||
padding: 20px;
|
||||
|
||||
text-align: center;
|
||||
|
||||
background: rgba(0, 0, 0, 0.6);
|
||||
border-top: 2px solid #000;
|
||||
|
||||
color: #ccc;
|
||||
|
||||
font-size: 13px;
|
||||
|
||||
}
|
||||
|
||||
footer p {
|
||||
margin: 5px 0;
|
||||
}
|
||||
Reference in New Issue
Block a user