-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
0 parents
commit 109560a
Showing
4 changed files
with
156 additions
and
0 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.
Binary file not shown.
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,156 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="icon" href="./icon.ico" type="image/x-icon"> | ||
<title>Skyblock Tweaks</title> | ||
<style> | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; | ||
} | ||
|
||
body { | ||
background-image: url('./bg.png'); | ||
background-size: cover; | ||
background-position: center; | ||
background-attachment: fixed; | ||
min-height: 100vh; | ||
position: relative; | ||
} | ||
|
||
body::before { | ||
content: ''; | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
height: 100%; | ||
background: rgba(0, 0, 0, 0.5); | ||
z-index: 1; | ||
} | ||
|
||
.top { | ||
position: relative; | ||
z-index: 2; | ||
height: 40vh; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
color: white; | ||
text-align: center; | ||
text-shadow: 2px 2px 4px rgba(0,0,0,0.5); | ||
} | ||
|
||
h1 { | ||
font-size: 5rem; | ||
margin-bottom: 1rem; | ||
user-select: none; | ||
} | ||
|
||
h2 { | ||
font-size: 2rem; | ||
margin-bottom: 2rem; | ||
user-select: none; | ||
} | ||
|
||
.buttons { | ||
position: relative; | ||
z-index: 2; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
gap: 1.5rem; | ||
padding: 2rem; | ||
} | ||
|
||
.secondary-buttons { | ||
display: flex; | ||
gap: 1rem; | ||
justify-content: center; | ||
flex-wrap: wrap; | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
padding: 1rem 2rem; | ||
border-radius: 8px; | ||
transition: transform 0.2s, box-shadow 0.2s; | ||
} | ||
|
||
a:hover { | ||
transform: translateY(-2px); | ||
box-shadow: 0 4px 12px rgba(0,0,0,0.1); | ||
} | ||
|
||
.primary { | ||
background: rgba(46, 204, 113, 0.9); | ||
color: white; | ||
font-size: 1.25rem; | ||
padding: 1.25rem 3rem; | ||
font-weight: 600; | ||
} | ||
|
||
.secondary { | ||
background: rgba(245, 245, 245, 0.9); | ||
color: #333; | ||
font-size: 0.95rem; | ||
} | ||
|
||
.developer { | ||
text-align: center; | ||
margin-top: 2rem; | ||
position: relative; | ||
z-index: 10; | ||
} | ||
|
||
.dev-link { | ||
display: inline-flex; | ||
align-items: center; | ||
gap: 0.5rem; | ||
text-decoration: none; | ||
color: rgba(255, 255, 255, 0.9); | ||
backdrop-filter: blur(2px); | ||
padding: 0.5rem 1rem; | ||
border-radius: 8px; | ||
background: rgba(0, 0, 0, 0.2); | ||
} | ||
|
||
.dev-image { | ||
width: 32px; | ||
height: 32px; | ||
border-radius: 50%; | ||
border: 2px solid rgba(255, 255, 255, 0.2); | ||
} | ||
|
||
.noSelect { | ||
user-select: none; | ||
} | ||
|
||
|
||
</style> | ||
</head> | ||
<body> | ||
<div class="top"> | ||
<h1>Skyblock Tweaks</h1> | ||
<h2>The most customizable 1.21 mod for Hypixel Skyblock</h2> | ||
</div> | ||
<div class="buttons"> | ||
<a href="https://modrinth.com/mod/sbt" class="primary noSelect">Download on Modrinth</a> | ||
<div class="secondary-buttons"> | ||
<a href="https://github.com/MisterCheezeCake/skyblocktweaks" class="secondary noSelect">View on GitHub</a> | ||
<a href="https://discord.gg/n2vFxYPkje" class="secondary noSelect">Join our Discord</a> | ||
</div> | ||
</div> | ||
<div class="developer"> | ||
<a href="https://modrinth.com/user/MisterCheezeCake" class="dev-link"> | ||
<img src="./cheeze.jpg" alt="MisterCheezeCake" class="dev-image"> | ||
<span>Developed by MisterCheezeCake</span> | ||
</a> | ||
</div> | ||
</body> | ||
</html> |