jack sparow

This commit is contained in:
root 2025-11-06 20:28:22 +00:00
parent 1c3bf6e7a1
commit e8d639f9ed
2 changed files with 307 additions and 0 deletions

58
index.html Executable file
View file

@ -0,0 +1,58 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Pirate Oasis</title>
<link href="https://fonts.googleapis.com/css2?family=Special+Elite&family=Pirata+One&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1 class="title">The Pirate Oasis</h1>
<nav class="navbar">
<a href="#">Trending</a>
<a href="#">Historical</a>
<a href="#">Statistics</a>
</nav>
</header>
<section class="welcome">
<marquee behavior="scroll" direction="left">Welcome to The Pirate Oasis - Home of the Lost Torrents</marquee>
</section>
<section class="filters">
<div class="dropdown">
<button class="dropbtn">Category</button>
<div class="dropdown-content">
<a href="#">Action</a>
<a href="#">Documentary</a>
<a href="#">Software</a>
<a href="#">Music</a>
<a href="#">Movies</a>
</div>
</div>
</section>
<section class="torrent-table">
<table>
<thead>
<tr>
<th>Name</th>
<th>Torrent Link</th>
<th>Last Updated</th>
<th>Active Peers</th>
</tr>
</thead>
<tbody>
<!-- Your torrent data will go here -->
</tbody>
</table>
</section>
<footer>
<p>© 2025 The Pirate Oasis. All rights reserved.</p>
</footer>
</body>
</html>

249
styles.css Executable file
View file

@ -0,0 +1,249 @@
body {
margin: 0;
background-color: #000000;
color: #FFFFFF;
font-family: 'Special Elite', monospace;
overflow-x: hidden;
}
header {
text-align: center;
padding: 30px 20px;
background-color: #0a0a0a;
box-shadow: 0 2px 10px #FF4E00;
}
.title {
font-family: 'Pirata One', cursive;
color: #FF4E00;
font-size: 60px;
margin: 0;
letter-spacing: 3px;
}
.navbar {
margin-top: 20px;
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
}
.navbar a {
color: #FFFFFF;
text-decoration: none;
padding: 12px 25px;
border: 2px solid #FF4E00;
border-radius: 5px;
transition: all 0.4s ease;
font-size: 18px;
}
.navbar a:hover {
background-color: #00FF00;
color: #000000;
transform: scale(1.1);
}
.welcome {
margin: 30px 0;
background-color: #111111;
padding: 10px 0;
box-shadow: inset 0 0 10px #FF4E00;
}
.welcome marquee {
font-size: 22px;
color: #FF4E00;
}
.filters {
text-align: center;
margin: 40px 0;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropbtn {
background-color: #FF4E00;
color: #000000;
padding: 14px 28px;
font-size: 18px;
border: none;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.4s, transform 0.4s;
}
.dropbtn:hover {
background-color: #00FF00;
transform: translateY(-2px);
}
.dropdown-content {
display: none;
position: absolute;
background-color: #000000;
min-width: 180px;
box-shadow: 0px 8px 16px 0px rgba(255,78,0,0.5);
z-index: 1;
border: 1px solid #FF4E00;
}
.dropdown-content a {
color: #FFFFFF;
padding: 14px 18px;
text-decoration: none;
display: block;
font-size: 16px;
transition: background-color 0.3s;
}
.dropdown-content a:hover {
background-color: #00FF00;
color: #000000;
}
.dropdown:hover .dropdown-content {
display: block;
}
.torrent-table {
width: 90%;
margin: 50px auto;
overflow-x: auto;
}
.torrent-table table {
width: 100%;
border-collapse: collapse;
background-color: #111111;
box-shadow: 0 0 10px #FF4E00;
}
.torrent-table th, .torrent-table td {
border: 1px solid #FF4E00;
padding: 16px;
text-align: center;
font-size: 18px;
transition: background-color 0.3s, color 0.3s;
}
.torrent-table th {
background-color: #FF4E00;
color: #000000;
text-transform: uppercase;
}
.torrent-table tr:hover {
background-color: #00FF00;
color: #000000;
}
footer {
text-align: center;
padding: 20px;
background-color: #0a0a0a;
border-top: 2px solid #FF4E00;
margin-top: 50px;
font-size: 14px;
}
footer p {
color: #FFFFFF;
margin: 0;
letter-spacing: 1px;
}
html {
scroll-behavior: smooth;
}
.torrent-table tbody tr {
cursor: pointer;
}
.torrent-table tbody tr:hover td {
background-color: #00FF00;
color: #000000;
}
@media (max-width: 1024px) {
.title {
font-size: 50px;
}
.navbar a {
font-size: 16px;
padding: 10px 20px;
}
.dropbtn {
padding: 12px 24px;
font-size: 16px;
}
.torrent-table th, .torrent-table td {
font-size: 16px;
padding: 12px;
}
}
@media (max-width: 768px) {
.navbar {
flex-direction: column;
gap: 10px;
}
.navbar a {
width: 80%;
text-align: center;
}
.title {
font-size: 40px;
}
.dropbtn {
width: 100%;
padding: 10px;
}
.torrent-table {
width: 100%;
margin: 20px 0;
}
}
@media (max-width: 480px) {
.title {
font-size: 32px;
}
.welcome marquee {
font-size: 18px;
}
.dropbtn {
font-size: 14px;
padding: 8px 16px;
}
.dropdown-content a {
font-size: 14px;
padding: 10px;
}
.torrent-table th, .torrent-table td {
font-size: 14px;
padding: 10px;
}
footer {
font-size: 12px;
}
}