132 lines
No EOL
3.8 KiB
HTML
132 lines
No EOL
3.8 KiB
HTML
<!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.com/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.com/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.com/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> |