Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Actual Site ig #1

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions assets/css/megahack.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
@font-face {
font-family: 'Rubik';
src: url('../fonts/Rubik.ttf') format('truetype');
}

body {
background-color: #111111F9;
color: #FFFFFFFF;
}

.eclipse-info h1 {
margin: auto 400px;
}

.eclipse-info p {
margin: auto 200px;
}

.eclipse-info ul {
list-style-type:square;
margin-left: 20px;
margin-right: 50px;
margin: 50px 200px;
}

.eclipse-info img {
margin: auto 440px;
}

.links img {
margin-right: 10px;
margin-left: 5px;
}

.tab {
background-color:#4DBF9CFF;
margin-bottom: 50px;
margin-top: 50px;
}

.tab a {
background-image: transparent;
color: #FFFFFFFF;
width: 500px;
margin: 250px;
}

a {
color: #4DBF9CFF;
}
50 changes: 50 additions & 0 deletions assets/css/megaoverlay.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
@font-face {
font-family: 'Rubik';
src: url('../fonts/Rubik.ttf') format('truetype');
}

body {
background-color: #111111F9;
color: #FFFFFFFF;
}

.eclipse-info h1 {
margin: auto 400px;
}

.eclipse-info p {
margin: auto 200px;
}

.eclipse-info ul {
list-style-type:square;
margin-left: 20px;
margin-right: 50px;
margin: 50px 200px;
}

.eclipse-info img {
margin: auto 440px;
}

.links img {
margin-right: 10px;
margin-left: 5px;
}

.tab {
background-image: linear-gradient(to left, #AB2CB7FF, #6E1E76FF);
margin-bottom: 50px;
margin-top: 50px;
}

.tab a {
background-image: transparent;
color: #FFFFFFFF;
width: 500px;
margin: 250px;
}

a {
color: #AB2CB7FF;
}
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
Binary file added assets/fonts/Rubik.ttf
Binary file not shown.
Binary file added assets/images/image1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/image2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/image3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/image4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/image5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/image6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions assets/js/theme-switcher.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
document.addEventListener('DOMContentLoaded', function() {
const themeLink = document.getElementById('theme-link');
const megahackLink = document.getElementById('megahack-link');
const megaOverlayLink = document.getElementById('gdmegaoverlay-link');

const savedTheme = localStorage.getItem('selected-theme');
if (savedTheme) {
themeLink.href = savedTheme;
}

megahackLink.addEventListener('click', (e) => {
e.preventDefault();
themeLink.href = 'assets/css/megahack.css';
localStorage.setItem('selected-theme', 'assets/css/megahack.css');
});

megaOverlayLink.addEventListener('click', (e) => {
e.preventDefault();
themeLink.href = 'assets/css/megaoverlay.css';
localStorage.setItem('selected-theme', 'assets/css/megaoverlay.css');
});
});
File renamed without changes.
1 change: 1 addition & 0 deletions assets/svg/github-mark-white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
166 changes: 139 additions & 27 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,28 +1,140 @@
<!DOCTYPE html>
<html>
<head>
<title>Eclipse Menu</title>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">

<meta name="title" content="Eclipse Menu — A next generation mod menu." />
<meta name="theme-color" content="#513fca">
<meta property="og:type" content="website" />
<meta property="og:url" content="https://eclipse.menu/" />
<meta property="og:title" content="Eclipse Menu — A next generation mod menu." />
<meta property="og:description" content="" />

<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://eclipse.menu" />
<meta property="twitter:title" content="Eclipse Menu — A next generation mod menu." />
<meta property="twitter:description" content="" />

<!-- Meta Tags Generated with https://metatags.io -->
</head>
<body>
<h1>in development</h1>
</body>
</html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Eclipse Menu</title>
<link id="theme-link" rel="stylesheet" href="assets/css/megahack.css">

<link rel="apple-touch-icon" sizes="180x180" href="/assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon/favicon-16x16.png">
<link rel="manifest" href="assets/manifest/site.webmanifest">

<meta name="title" content="Eclipse Menu — A next generation mod menu." />
<meta name="theme-color" content="#513fca">
<meta property="og:type" content="website" />
<meta property="og:url" content="https://eclipse.menu/" />
<meta property="og:title" content="Eclipse Menu — A next generation mod menu." />
<meta property="og:description" content="" />

<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://eclipse.menu" />
<meta property="twitter:title" content="Eclipse Menu — A next generation mod menu." />
<meta property="twitter:description" content="" />
</head>
<body>

<div class="eclipse-info">
<h1 align="center">Themes:</h1>
<div class="tab">
<a href="#" id="megahack-link">Megahack Theme</a>
<a href="#" id="gdmegaoverlay-link"><abbr title="GDMegaOverlay">GDMO</abbr> Theme</a>
</div>

<script src="assets/js/theme-switcher.js"></script>

<img src="https://github.com/EclipseMenu/EclipseMenu/blob/main/logo.png?raw=true" style="margin: 20px 560px;" align="center" height="100px" width="100px">

<div class="tab">
<h1 style="margin: 0px 500px;">Eclipse Menu</h1>
</div>
<p>Eclipse Menu Is A <strong>next-generation</strong> mod menu for Geometry Dash With Features That Include:</p>
<ul>
<li>~140 Hacks</li>
<li>Fully Customizable Labels <a href="https://github.com/EclipseMenu/EclipseMenu/blob/main/LABELS.md">(Guide)</a></li>
<li>Full Keybind Customizability</li>
<li>Fully Customizable Menu Interface</li>
<li>Themes Customizability</li>
<li>Replay Bot</li>
</ul>
</div>

<div class="eclipse-info">
<div class="tab">
<h1 style="margin: 0px 500px;">Installation</h1>
</div>
<ul>
<li>1. Download The Latest Release <a href="https://github.com/EclipseMenu/EclipseMenu/releases/latest">(You Can Get It Here)</a>.</li>

<li>2. Place The "eclipse.eclipse-menu.geode" File In: "C:\Program Files (x86)\Steam\steamapps\common\Geometry Dash\geode\mods".</li>

<li>3. Open Up Your GD, And Press Tab, And Now You Can Mess Around With It.</li>
</ul>
</div>

<div class="eclipse-info">
<div class="tab">
<h1 style="margin: 0px 500px;">Screenshots:</h1>
</div>
<fieldset>
<legend>Screenshot 1:</legend>
<label style="margin: 0px 350px;">Tabbed + Megahack (Regular Eclipse Menu):</label>
<img style="margin: 0px 100px;" height="400px" width="725px" src="assets/images/image1.png" align: center;>
</fieldset>

<fieldset>
<legend>Screenshot 2:</legend>
<label style="margin: 0px 400px;">Panel + Megahack:</label>
<img style="margin: 0px 100px;" height="400px" width="725px" src="assets/images/image2.png">
</fieldset>

<fieldset>
<legend>Screenshot 3:</legend>
<label style="margin: 0px 400px;">SideBar + Megahack:</label>
<img style="margin: 0px 100px;" height="400px" width="725px" src="assets/images/image3.png">
</fieldset>

<fieldset>
<legend>Screenshot 4:</legend>
<label style="margin: 0px 400px;">Tabbed + MegaOverlay:</label>
<img style="margin: 0px 100px;" height="400px" width="725px" src="assets/images/image4.png">
</fieldset>

<fieldset>
<legend>Screenshot 5:</legend>
<label style="margin: 0px 400px;">Panel + MegaOverlay:</label>
<img style="margin: 0px 100px;" height="400px" width="725px" src="assets/images/image5.png">
</fieldset>

<fieldset>
<legend>Screenshot 6:</legend>
<label style="margin: 0px 400px;">SideBar + MegaOverlay:</label>
<img style="margin: 0px 100px;" height="400px" width="725px" src="assets/images/image6.png">
</fieldset>

</div>

<div class="eclipse-info">
<hr>
<div class="tab">
<h1 style="margin-top: 30px; margin-bottom: 30px; margin: 0px 500px;" >Other Stuff:</h1>
</div>
</div>

<div class="links" align="center">
<a href="https://github.com/EclipseMenu/EclipseMenu/releases/latest" target="_blank">
<img src="https://img.shields.io/github/v/release/EclipseMenu/EclipseMenu" alt="Release version">
</a>
<img src="https://img.shields.io/github/downloads/EclipseMenu/EclipseMenu/total" alt="Total downloads">
<img src="https://img.shields.io/github/downloads/EclipseMenu/EclipseMenu/latest/total" alt="Latest release downloads">
<a href="https://github.com/EclipseMenu/EclipseMenu/issues" target="_blank">
<img src="https://img.shields.io/github/issues/EclipseMenu/EclipseMenu" alt="Issues">
</a>
<a href="https://discord.gg/NnpwFRDMND" target="_blank">
<img src="https://img.shields.io/discord/1256092297829945414?label=discord&logo=discord" alt="Discord">
</a>

</div>

<hr>

<div class="eclipse-info">
<h1 style="margin: 0px 500px;">Eclipse Source Code:</h1>
<a href="https://github.com/EclipseMenu/EclipseMenu" align="center" style="margin: 0px 125px;" target="_blank">
<img src="assets/svg/github-mark-white.svg">
</a>
</div>
</body>
</html>