Add files via upload
This commit is contained in:
parent
1c59cf2c25
commit
d458f78771
4 changed files with 322 additions and 0 deletions
27
credits.html
Normal file
27
credits.html
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Credits</title>
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<a href="index.html" class="back-button">← Back</a>
|
||||
<div class="credits-container">
|
||||
<h1 class="credits-title">Credits</h1>
|
||||
<div class="developers">
|
||||
<div class="developer-profile">
|
||||
<img src="https://avatars.githubusercontent.com/u/45163558?v=4" alt="Developer 1">
|
||||
<h4>WhySooooFurious</h4>
|
||||
<p>Main Developer</p>
|
||||
</div>
|
||||
<div class="developer-profile">
|
||||
<img src="https://i.ibb.co/2cY0r49/53532e5875139a07a9d594e1c2a471e8.webp" alt="Developer 2">
|
||||
<h4>Riqvip</h4>
|
||||
<p>Web Designer</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
47
guide.html
Normal file
47
guide.html
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Guide</title>
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<a href="index.html" class="back-button">Back</a>
|
||||
<div class="content-container">
|
||||
<div class="contents">
|
||||
<h2>Contents</h2>
|
||||
<ul>
|
||||
<li><a href="#step1">Step 1</a></li>
|
||||
<li><a href="#step2">Step 2</a></li>
|
||||
<li><a href="#step3">Step 3</a></li>
|
||||
<li><a href="#step4">Step 4</a></li>
|
||||
<li><a href="#step5">Step 5</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="steps">
|
||||
<div id="step1" class="step-box">
|
||||
<h3>Step 1</h3>
|
||||
<p>Details about Step 1.</p>
|
||||
</div>
|
||||
<div id="step2" class="step-box">
|
||||
<h3>Step 2</h3>
|
||||
<p>Details about Step 2.</p>
|
||||
</div>
|
||||
<div id="step3" class="step-box">
|
||||
<h3>Step 3</h3>
|
||||
<p>Details about Step 3.</p>
|
||||
</div>
|
||||
<div id="step4" class="step-box">
|
||||
<h3>Step 4</h3>
|
||||
<p>Details about Step 4.</p>
|
||||
</div>
|
||||
<div id="step5" class="step-box">
|
||||
<h3>Step 5</h3>
|
||||
<p>Details about Step 5.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="guide-title">Guide</div>
|
||||
</body>
|
||||
</html>
|
||||
19
index.html
Normal file
19
index.html
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Ultimate Sideloading Guide</title>
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="home-container">
|
||||
<h1>Welcome to the Ultimate Sideloading Guide</h1>
|
||||
<p>This guide will help you understand how to sideload apps.</p>
|
||||
<div class="home-button-container">
|
||||
<a href="guide.html" class="glass-button">Guide</a>
|
||||
<a href="credits.html" class="glass-button">Credits</a>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
229
styles.css
Normal file
229
styles.css
Normal file
|
|
@ -0,0 +1,229 @@
|
|||
body {
|
||||
margin: 0;
|
||||
font-family: Arial, sans-serif;
|
||||
background: grey;
|
||||
color: #333;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
@keyframes fade-out {
|
||||
0% {
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fade-in {
|
||||
0% {
|
||||
opacity: 0;
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
body {
|
||||
animation: fade-in 0.6s ease-in;
|
||||
}
|
||||
|
||||
.glass-button:active {
|
||||
animation: fade-out 0.6s ease-out;
|
||||
}
|
||||
|
||||
.back-button {
|
||||
position: absolute;
|
||||
top: 20px;
|
||||
left: 20px;
|
||||
background: rgba(255, 255, 255, 0.8);
|
||||
backdrop-filter: blur(10px);
|
||||
border-radius: 30px;
|
||||
padding: 10px 20px;
|
||||
color: #333;
|
||||
text-decoration: none;
|
||||
font-size: 1.2em;
|
||||
transition: transform 0.3s ease, background 0.3s ease;
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
.back-button:hover {
|
||||
background: rgba(255, 255, 255, 1);
|
||||
}
|
||||
|
||||
.back-button:active {
|
||||
transform: scale(0.95);
|
||||
}
|
||||
|
||||
.home-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
.home-container h1 {
|
||||
font-size: 3em;
|
||||
margin-bottom: 10px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.home-container p {
|
||||
font-size: 1.2em;
|
||||
color: #fff;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.home-button-container {
|
||||
display: flex;
|
||||
gap: 15px;
|
||||
}
|
||||
|
||||
.glass-button {
|
||||
padding: 15px 30px;
|
||||
background: rgba(255, 255, 255, 0.8);
|
||||
border-radius: 30px;
|
||||
color: #333;
|
||||
text-decoration: none;
|
||||
font-size: 1.2em;
|
||||
transition: transform 0.3s ease, background 0.3s ease;
|
||||
}
|
||||
|
||||
.glass-button:hover {
|
||||
background: rgba(255, 255, 255, 1);
|
||||
}
|
||||
|
||||
.glass-button:active {
|
||||
transform: scale(0.95);
|
||||
}
|
||||
|
||||
.page-title {
|
||||
font-size: 3em;
|
||||
text-align: center;
|
||||
margin: 20px 0;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.content-container {
|
||||
display: flex;
|
||||
padding-top: 80px;
|
||||
}
|
||||
|
||||
.contents {
|
||||
background: rgba(255, 255, 255, 0.8);
|
||||
backdrop-filter: blur(10px);
|
||||
padding: 20px;
|
||||
border-radius: 0 10px 10px 0;
|
||||
width: 20%;
|
||||
max-height: calc(100vh - 40px);
|
||||
overflow-y: auto;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
box-sizing: border-box;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.contents ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.contents li {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.contents a {
|
||||
color: #333;
|
||||
text-decoration: none;
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
.steps {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 20px;
|
||||
padding: 0 20px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.step-box {
|
||||
background: rgba(255, 255, 255, 0.8);
|
||||
backdrop-filter: blur(10px);
|
||||
border-radius: 10px;
|
||||
padding: 20px;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
color: #333;
|
||||
min-height: 15cm;
|
||||
}
|
||||
|
||||
.step-box h3 {
|
||||
font-size: 1.5em;
|
||||
}
|
||||
|
||||
.steps .step-box {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.guide-title {
|
||||
position: absolute;
|
||||
top: 20px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
font-size: 3em;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
padding: 20px 0;
|
||||
box-sizing: border-box;
|
||||
z-index: 999;
|
||||
}
|
||||
|
||||
.credits-container {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
height: 100vh;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.credits-title {
|
||||
font-size: 3em;
|
||||
margin-bottom: 20px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.developers {
|
||||
display: flex;
|
||||
gap: 40px;
|
||||
}
|
||||
|
||||
.developer-profile {
|
||||
background: rgba(255, 255, 255, 0.8);
|
||||
backdrop-filter: blur(10px);
|
||||
border-radius: 15px;
|
||||
padding: 20px;
|
||||
text-align: center;
|
||||
color: #333;
|
||||
width: 200px;
|
||||
}
|
||||
|
||||
.developer-profile img {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
border-radius: 50%;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.developer-profile h4 {
|
||||
margin: 10px 0;
|
||||
font-size: 1.5em;
|
||||
}
|
||||
|
||||
.developer-profile p {
|
||||
font-size: 1.1em;
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue