diff --git a/docs/Assets/dirt.png b/docs/Assets/dirt.png new file mode 100644 index 0000000..22e39d0 Binary files /dev/null and b/docs/Assets/dirt.png differ diff --git a/docs/Assets/favicon.ico b/docs/Assets/favicon.ico new file mode 100644 index 0000000..beb6548 Binary files /dev/null and b/docs/Assets/favicon.ico differ diff --git a/docs/Assets/launcher.png b/docs/Assets/launcher.png new file mode 100644 index 0000000..ceca482 Binary files /dev/null and b/docs/Assets/launcher.png differ diff --git a/docs/Assets/logo.png b/docs/Assets/logo.png new file mode 100644 index 0000000..78c5ef1 Binary files /dev/null and b/docs/Assets/logo.png differ diff --git a/docs/Assets/steve.webp b/docs/Assets/steve.webp new file mode 100644 index 0000000..29fd365 Binary files /dev/null and b/docs/Assets/steve.webp differ diff --git a/docs/Assets/stone.png b/docs/Assets/stone.png new file mode 100644 index 0000000..e4abed3 Binary files /dev/null and b/docs/Assets/stone.png differ diff --git a/docs/index.html b/docs/index.html new file mode 100644 index 0000000..fc0a4f8 --- /dev/null +++ b/docs/index.html @@ -0,0 +1,104 @@ + + + + + + Legacy Console Launcher + + + + + + + + +
+ + + + + +
+ +
+ +
+ +
+ +
+ +
+ +

+ Legacy Console Launcher is a simple and lightweight launcher for the + PC port of Minecraft Legacy Console Edition. +

+ +

+ It was created to make launching and managing the game easier while keeping + everything clean, fast, and easy to use. +

+ +
+ +
+ + + + + + + +

+ Free • Open Source • Windows +

+ +

+ Supports Windows 7 – Windows 11 +

+ +
+ +
+ +
+ +

Features

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