This commit is contained in:
EduardSkibidiEdger 2024-11-17 18:52:33 +02:00
parent 6424f88b27
commit 0a82179cb0
8 changed files with 899 additions and 1 deletions

View file

@ -3,7 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IGOR</title> <title>Media</title>
<link rel="icon" href="https://prigoana.lol/favicon.png" type="image/x-icon"> <link rel="icon" href="https://prigoana.lol/favicon.png" type="image/x-icon">
<style> <style>
body { body {

132
services/index.html Normal file
View file

@ -0,0 +1,132 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Services</title>
<link rel="icon" href="https://prigoana.lol/favicon.png" type="image/x-icon">
<style>
body {
background-color: #000;
color: #fff; /* Set default text color to white */
font-family: monospace;
user-select: none;
cursor: url(https://prigoana.lol/cursor.cur), auto;
margin: 0;
padding: 0;
display: block;
}
.container {
max-width: 800px;
margin: 0 auto; /* Center the container horizontally */
text-align: center; /* Center the text inside the container */
padding: 20px;
}
.text-center {
text-align: center;
padding: 20px;
margin: 0;
}
.navbar {
list-style: none;
padding: 0;
margin: 0;
}
.navbar a, a, .dropbtn {
color: #fff;
text-decoration: none;
cursor: url(https://prigoana.lol/link.cur), auto;
}
#gallery img {
width: 100px;
height: 100px;
cursor: pointer;
margin: 5px;
}
#gallery-display {
display: none;
background-color: #222;
padding: 20px;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #fff;
border: 1px solid #333;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
width: 400px; /* Fixed width for the modal */
max-height: 80%; /* Set max height for the modal */
overflow-y: auto; /* Allow vertical scrolling if content overflows */
z-index: 2;
}
#gallery-display img {
width: 400px;
height: auto;
}
#gallery-display .caption {
margin-top: 10px;
color: #fff; /* Ensure caption text is white */
}
#gallery-display .close {
position: absolute;
top: 10px;
right: 10px;
cursor: pointer;
color: #fff; /* Close button color */
}
#gallery-display .arrow {
position: absolute;
top: 50%;
width: 30px;
height: 30px;
background-color: #333;
color: #fff;
font-size: 24px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
user-select: none;
}
#gallery-display .arrow.left {
left: 10px;
transform: translateY(-50%);
}
#gallery-display .arrow.right {
right: 10px;
transform: translateY(-50%);
}
@media (min-width: 768px) {
.container {
width: 70%; /* Adjust width for larger screens */
margin: 0 auto; /* Center the container */
}
}
</style>
</head>
<body class="container">
<p><a href="../">back</a></p>
<p>Here's a list of services I can provide. Please contact me about details such as meeting point, payment, or extra services. Thank you.<br><br></p>
<p><a href="./modding/">Console Modding (wip)</a></p>
<p><a href="./jailbreak/">iOS Jailbreaking</a></p>
<p><a href="./sideloading/">iOS Sideloading</a></p>
<p><a href="./web/">Web Services</a></p>
<p><a href="./repairs/">Repairs</a></p>
<p><a href="./piracy/">On-demand <s>pirated</s> media</a></p>
</body>
</html>

View file

@ -0,0 +1,125 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Services</title>
<link rel="icon" href="https://prigoana.lol/favicon.png" type="image/x-icon">
<style>
body {
background-color: #000;
color: #fff; /* Set default text color to white */
font-family: monospace;
user-select: none;
cursor: url(https://prigoana.lol/cursor.cur), auto;
margin: 0;
padding: 0;
display: block;
}
.container {
max-width: 800px;
margin: 0 auto; /* Center the container horizontally */
text-align: center; /* Center the text inside the container */
padding: 20px;
}
.text-center {
text-align: center;
padding: 20px;
margin: 0;
}
.navbar {
list-style: none;
padding: 0;
margin: 0;
}
.navbar a, a, .dropbtn {
color: #fff;
text-decoration: none;
cursor: url(https://prigoana.lol/link.cur), auto;
}
#gallery img {
width: 100px;
height: 100px;
cursor: pointer;
margin: 5px;
}
#gallery-display {
display: none;
background-color: #222;
padding: 20px;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #fff;
border: 1px solid #333;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
width: 400px; /* Fixed width for the modal */
max-height: 80%; /* Set max height for the modal */
overflow-y: auto; /* Allow vertical scrolling if content overflows */
z-index: 2;
}
#gallery-display img {
width: 400px;
height: auto;
}
#gallery-display .caption {
margin-top: 10px;
color: #fff; /* Ensure caption text is white */
}
#gallery-display .close {
position: absolute;
top: 10px;
right: 10px;
cursor: pointer;
color: #fff; /* Close button color */
}
#gallery-display .arrow {
position: absolute;
top: 50%;
width: 30px;
height: 30px;
background-color: #333;
color: #fff;
font-size: 24px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
user-select: none;
}
#gallery-display .arrow.left {
left: 10px;
transform: translateY(-50%);
}
#gallery-display .arrow.right {
right: 10px;
transform: translateY(-50%);
}
@media (min-width: 768px) {
.container {
width: 70%; /* Adjust width for larger screens */
margin: 0 auto; /* Center the container */
}
}
</style>
</head>
<body class="container">
<p><a href="../">back</a></p>
<h3>Jailbreak<br><br></h3>
</body>
</html>

141
services/modding/index.html Normal file
View file

@ -0,0 +1,141 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Services</title>
<link rel="icon" href="https://prigoana.lol/favicon.png" type="image/x-icon">
<style>
body {
background-color: #000;
color: #fff; /* Set default text color to white */
font-family: monospace;
user-select: none;
cursor: url(https://prigoana.lol/cursor.cur), auto;
margin: 0;
padding: 0;
display: block;
}
.container {
max-width: 800px;
margin: 0 auto; /* Center the container horizontally */
text-align: center; /* Center the text inside the container */
padding: 20px;
}
.text-center {
text-align: center;
padding: 20px;
margin: 0;
}
.navbar {
list-style: none;
padding: 0;
margin: 0;
}
.navbar a, a, .dropbtn {
color: #fff;
text-decoration: none;
cursor: url(https://prigoana.lol/link.cur), auto;
}
#gallery img {
width: 100px;
height: 100px;
cursor: pointer;
margin: 5px;
}
#gallery-display {
display: none;
background-color: #222;
padding: 20px;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #fff;
border: 1px solid #333;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
width: 400px; /* Fixed width for the modal */
max-height: 80%; /* Set max height for the modal */
overflow-y: auto; /* Allow vertical scrolling if content overflows */
z-index: 2;
}
#gallery-display img {
width: 400px;
height: auto;
}
#gallery-display .caption {
margin-top: 10px;
color: #fff; /* Ensure caption text is white */
}
#gallery-display .close {
position: absolute;
top: 10px;
right: 10px;
cursor: pointer;
color: #fff; /* Close button color */
}
#gallery-display .arrow {
position: absolute;
top: 50%;
width: 30px;
height: 30px;
background-color: #333;
color: #fff;
font-size: 24px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
user-select: none;
}
#gallery-display .arrow.left {
left: 10px;
transform: translateY(-50%);
}
#gallery-display .arrow.right {
right: 10px;
transform: translateY(-50%);
}
@media (min-width: 768px) {
.container {
width: 70%; /* Adjust width for larger screens */
margin: 0 auto; /* Center the container */
}
}
</style>
</head>
<body class="container">
<p><a href="../">back</a></p>
<h3>Console Modding<br><br></h3>
<p>Available Consoles:</p><br>
<p>Nintendo GameCube</p>
<p>Nintendo Wii</p>
<p>Nintendo Wii Mini</p>
<p>Nintendo Wii U</p>
<p>Nintendo 3DS</p>
<p>Nintendo Switch</p>
<p>PlayStation</p>
<p>PlayStation 2</p>
<p>PlayStation 3</p>
<p>PlayStation 4</p>
<p>PlayStation 5</p>
<p>PlayStation Portable</p>
<P>PlayStation Vita</P>
<p>OG Xbox</p>
<p>Xbox 360</p>
</body>
</html>

125
services/piracy/index.html Normal file
View file

@ -0,0 +1,125 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Services</title>
<link rel="icon" href="https://prigoana.lol/favicon.png" type="image/x-icon">
<style>
body {
background-color: #000;
color: #fff; /* Set default text color to white */
font-family: monospace;
user-select: none;
cursor: url(https://prigoana.lol/cursor.cur), auto;
margin: 0;
padding: 0;
display: block;
}
.container {
max-width: 800px;
margin: 0 auto; /* Center the container horizontally */
text-align: center; /* Center the text inside the container */
padding: 20px;
}
.text-center {
text-align: center;
padding: 20px;
margin: 0;
}
.navbar {
list-style: none;
padding: 0;
margin: 0;
}
.navbar a, a, .dropbtn {
color: #fff;
text-decoration: none;
cursor: url(https://prigoana.lol/link.cur), auto;
}
#gallery img {
width: 100px;
height: 100px;
cursor: pointer;
margin: 5px;
}
#gallery-display {
display: none;
background-color: #222;
padding: 20px;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #fff;
border: 1px solid #333;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
width: 400px; /* Fixed width for the modal */
max-height: 80%; /* Set max height for the modal */
overflow-y: auto; /* Allow vertical scrolling if content overflows */
z-index: 2;
}
#gallery-display img {
width: 400px;
height: auto;
}
#gallery-display .caption {
margin-top: 10px;
color: #fff; /* Ensure caption text is white */
}
#gallery-display .close {
position: absolute;
top: 10px;
right: 10px;
cursor: pointer;
color: #fff; /* Close button color */
}
#gallery-display .arrow {
position: absolute;
top: 50%;
width: 30px;
height: 30px;
background-color: #333;
color: #fff;
font-size: 24px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
user-select: none;
}
#gallery-display .arrow.left {
left: 10px;
transform: translateY(-50%);
}
#gallery-display .arrow.right {
right: 10px;
transform: translateY(-50%);
}
@media (min-width: 768px) {
.container {
width: 70%; /* Adjust width for larger screens */
margin: 0 auto; /* Center the container */
}
}
</style>
</head>
<body class="container">
<p><a href="../">back</a></p>
<h3>On-demand media<br><br></h3>
</body>
</html>

125
services/repairs/index.html Normal file
View file

@ -0,0 +1,125 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Services</title>
<link rel="icon" href="https://prigoana.lol/favicon.png" type="image/x-icon">
<style>
body {
background-color: #000;
color: #fff; /* Set default text color to white */
font-family: monospace;
user-select: none;
cursor: url(https://prigoana.lol/cursor.cur), auto;
margin: 0;
padding: 0;
display: block;
}
.container {
max-width: 800px;
margin: 0 auto; /* Center the container horizontally */
text-align: center; /* Center the text inside the container */
padding: 20px;
}
.text-center {
text-align: center;
padding: 20px;
margin: 0;
}
.navbar {
list-style: none;
padding: 0;
margin: 0;
}
.navbar a, a, .dropbtn {
color: #fff;
text-decoration: none;
cursor: url(https://prigoana.lol/link.cur), auto;
}
#gallery img {
width: 100px;
height: 100px;
cursor: pointer;
margin: 5px;
}
#gallery-display {
display: none;
background-color: #222;
padding: 20px;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #fff;
border: 1px solid #333;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
width: 400px; /* Fixed width for the modal */
max-height: 80%; /* Set max height for the modal */
overflow-y: auto; /* Allow vertical scrolling if content overflows */
z-index: 2;
}
#gallery-display img {
width: 400px;
height: auto;
}
#gallery-display .caption {
margin-top: 10px;
color: #fff; /* Ensure caption text is white */
}
#gallery-display .close {
position: absolute;
top: 10px;
right: 10px;
cursor: pointer;
color: #fff; /* Close button color */
}
#gallery-display .arrow {
position: absolute;
top: 50%;
width: 30px;
height: 30px;
background-color: #333;
color: #fff;
font-size: 24px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
user-select: none;
}
#gallery-display .arrow.left {
left: 10px;
transform: translateY(-50%);
}
#gallery-display .arrow.right {
right: 10px;
transform: translateY(-50%);
}
@media (min-width: 768px) {
.container {
width: 70%; /* Adjust width for larger screens */
margin: 0 auto; /* Center the container */
}
}
</style>
</head>
<body class="container">
<p><a href="../">back</a></p>
<h3>Repairs<br><br></h3>
</body>
</html>

View file

@ -0,0 +1,125 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Services</title>
<link rel="icon" href="https://prigoana.lol/favicon.png" type="image/x-icon">
<style>
body {
background-color: #000;
color: #fff; /* Set default text color to white */
font-family: monospace;
user-select: none;
cursor: url(https://prigoana.lol/cursor.cur), auto;
margin: 0;
padding: 0;
display: block;
}
.container {
max-width: 800px;
margin: 0 auto; /* Center the container horizontally */
text-align: center; /* Center the text inside the container */
padding: 20px;
}
.text-center {
text-align: center;
padding: 20px;
margin: 0;
}
.navbar {
list-style: none;
padding: 0;
margin: 0;
}
.navbar a, a, .dropbtn {
color: #fff;
text-decoration: none;
cursor: url(https://prigoana.lol/link.cur), auto;
}
#gallery img {
width: 100px;
height: 100px;
cursor: pointer;
margin: 5px;
}
#gallery-display {
display: none;
background-color: #222;
padding: 20px;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #fff;
border: 1px solid #333;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
width: 400px; /* Fixed width for the modal */
max-height: 80%; /* Set max height for the modal */
overflow-y: auto; /* Allow vertical scrolling if content overflows */
z-index: 2;
}
#gallery-display img {
width: 400px;
height: auto;
}
#gallery-display .caption {
margin-top: 10px;
color: #fff; /* Ensure caption text is white */
}
#gallery-display .close {
position: absolute;
top: 10px;
right: 10px;
cursor: pointer;
color: #fff; /* Close button color */
}
#gallery-display .arrow {
position: absolute;
top: 50%;
width: 30px;
height: 30px;
background-color: #333;
color: #fff;
font-size: 24px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
user-select: none;
}
#gallery-display .arrow.left {
left: 10px;
transform: translateY(-50%);
}
#gallery-display .arrow.right {
right: 10px;
transform: translateY(-50%);
}
@media (min-width: 768px) {
.container {
width: 70%; /* Adjust width for larger screens */
margin: 0 auto; /* Center the container */
}
}
</style>
</head>
<body class="container">
<p><a href="../">back</a></p>
<h3>Sideloading<br><br></h3>
</body>
</html>

125
services/web/index.html Normal file
View file

@ -0,0 +1,125 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Services</title>
<link rel="icon" href="https://prigoana.lol/favicon.png" type="image/x-icon">
<style>
body {
background-color: #000;
color: #fff; /* Set default text color to white */
font-family: monospace;
user-select: none;
cursor: url(https://prigoana.lol/cursor.cur), auto;
margin: 0;
padding: 0;
display: block;
}
.container {
max-width: 800px;
margin: 0 auto; /* Center the container horizontally */
text-align: center; /* Center the text inside the container */
padding: 20px;
}
.text-center {
text-align: center;
padding: 20px;
margin: 0;
}
.navbar {
list-style: none;
padding: 0;
margin: 0;
}
.navbar a, a, .dropbtn {
color: #fff;
text-decoration: none;
cursor: url(https://prigoana.lol/link.cur), auto;
}
#gallery img {
width: 100px;
height: 100px;
cursor: pointer;
margin: 5px;
}
#gallery-display {
display: none;
background-color: #222;
padding: 20px;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #fff;
border: 1px solid #333;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
width: 400px; /* Fixed width for the modal */
max-height: 80%; /* Set max height for the modal */
overflow-y: auto; /* Allow vertical scrolling if content overflows */
z-index: 2;
}
#gallery-display img {
width: 400px;
height: auto;
}
#gallery-display .caption {
margin-top: 10px;
color: #fff; /* Ensure caption text is white */
}
#gallery-display .close {
position: absolute;
top: 10px;
right: 10px;
cursor: pointer;
color: #fff; /* Close button color */
}
#gallery-display .arrow {
position: absolute;
top: 50%;
width: 30px;
height: 30px;
background-color: #333;
color: #fff;
font-size: 24px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
user-select: none;
}
#gallery-display .arrow.left {
left: 10px;
transform: translateY(-50%);
}
#gallery-display .arrow.right {
right: 10px;
transform: translateY(-50%);
}
@media (min-width: 768px) {
.container {
width: 70%; /* Adjust width for larger screens */
margin: 0 auto; /* Center the container */
}
}
</style>
</head>
<body class="container">
<p><a href="../">back</a></p>
<h3>Web Services<br><br></h3>
</body>
</html>