Spaces:
Running
Running
Please redsign this site completely into an frutiger aero style
Browse files- index.html +254 -142
- style.css +87 -18
index.html
CHANGED
|
@@ -1,109 +1,75 @@
|
|
|
|
|
| 1 |
<!DOCTYPE html>
|
| 2 |
<html lang="en">
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
-
<title>Atlantic Shores Roleplay |
|
| 7 |
-
<script src="https://cdn.tailwindcss.com"></script>
|
| 8 |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
| 9 |
-
<style>
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
z-index: 2;
|
| 47 |
-
}
|
| 48 |
-
.counter-item {
|
| 49 |
-
transition: all 0.3s ease;
|
| 50 |
-
}
|
| 51 |
-
.counter-item:hover {
|
| 52 |
-
transform: translateY(-5px);
|
| 53 |
-
}
|
| 54 |
-
.department-card {
|
| 55 |
-
transition: all 0.3s ease;
|
| 56 |
-
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
| 57 |
-
}
|
| 58 |
-
.department-card:hover {
|
| 59 |
-
transform: translateY(-10px);
|
| 60 |
-
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
|
| 61 |
-
}
|
| 62 |
-
.nav-link {
|
| 63 |
-
position: relative;
|
| 64 |
-
}
|
| 65 |
-
.nav-link::after {
|
| 66 |
-
content: '';
|
| 67 |
-
position: absolute;
|
| 68 |
-
width: 0;
|
| 69 |
-
height: 2px;
|
| 70 |
-
bottom: -2px;
|
| 71 |
-
left: 0;
|
| 72 |
-
background-color: #3b82f6;
|
| 73 |
-
transition: width 0.3s ease;
|
| 74 |
-
}
|
| 75 |
-
.nav-link:hover::after {
|
| 76 |
-
width: 100%;
|
| 77 |
-
}
|
| 78 |
-
.gradient-text {
|
| 79 |
-
background: linear-gradient(90deg, #23d7d6, #327aaf, #43067c);
|
| 80 |
-
background-size: 200% auto;
|
| 81 |
-
background-clip: text;
|
| 82 |
-
-webkit-background-clip: text;
|
| 83 |
-
-webkit-text-fill-color: transparent;
|
| 84 |
-
transition: background-position 0.5s ease;
|
| 85 |
-
}
|
| 86 |
-
.gradient-text:hover {
|
| 87 |
-
background-position: 100% center;
|
| 88 |
-
}
|
| 89 |
-
</style>
|
| 90 |
</head>
|
| 91 |
<body class="bg-black text-gray-100 font-sans">
|
| 92 |
<!-- Header with Logo and Navigation -->
|
| 93 |
<header class="fixed w-full z-50 bg-black bg-opacity-90 shadow-lg">
|
| 94 |
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
|
| 95 |
<div class="flex items-center">
|
| 96 |
-
<img src="
|
| 97 |
</div>
|
| 98 |
-
<nav class="hidden md:flex space-x-
|
| 99 |
-
<a href="
|
| 100 |
-
|
| 101 |
-
<
|
| 102 |
-
<a href="#" class="nav-link text-gray-300 hover:text-white">
|
| 103 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 104 |
</nav>
|
| 105 |
-
<button class="md:hidden text-gray-300 hover:text-white">
|
| 106 |
-
<i class="fas fa-bars text-
|
| 107 |
</button>
|
| 108 |
</div>
|
| 109 |
</header>
|
|
@@ -127,10 +93,10 @@ body {
|
|
| 127 |
</div>
|
| 128 |
|
| 129 |
<div class="flex flex-wrap justify-center gap-4 mb-16">
|
| 130 |
-
<a href="
|
| 131 |
<i class="fas fa-user-plus mr-2"></i> Apply Now
|
| 132 |
</a>
|
| 133 |
-
<a href="
|
| 134 |
<i class="fas fa-book-open mr-2"></i> Requirements
|
| 135 |
</a>
|
| 136 |
</div>
|
|
@@ -161,32 +127,32 @@ body {
|
|
| 161 |
<section class="py-20 bg-gradient-to-b from-gray-900 to-black">
|
| 162 |
<div class="container mx-auto px-4">
|
| 163 |
<div class="text-center mb-16">
|
| 164 |
-
<h2 class="text-3xl md:text-4xl font-bold mb-4 bg-gradient-to-r from-blue-400 to-blue-600 bg-clip-text text-transparent">Our Community</h2>
|
| 165 |
-
<p class="max-w-4xl mx-auto text-gray-400">
|
| 166 |
</div>
|
| 167 |
|
| 168 |
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center">
|
| 169 |
<div>
|
| 170 |
<h3 class="text-2xl font-bold mb-4 text-white">Our Mission</h3>
|
| 171 |
-
<p class="text-gray-400 mb-6">
|
| 172 |
|
| 173 |
<h3 class="text-2xl font-bold mb-4 text-white">What We Offer</h3>
|
| 174 |
<ul class="space-y-3 text-gray-400">
|
| 175 |
<li class="flex items-start">
|
| 176 |
<i class="fas fa-check-circle text-[#23d7d6] mt-1 mr-3"></i>
|
| 177 |
-
<span>Whitelisted, high-quality roleplay with active staff
|
| 178 |
</li>
|
| 179 |
<li class="flex items-start">
|
| 180 |
<i class="fas fa-check-circle text-[#23d7d6] mt-1 mr-3"></i>
|
| 181 |
-
<span>Custom
|
| 182 |
</li>
|
| 183 |
<li class="flex items-start">
|
| 184 |
<i class="fas fa-check-circle text-[#23d7d6] mt-1 mr-3"></i>
|
| 185 |
-
<span>
|
| 186 |
</li>
|
| 187 |
<li class="flex items-start">
|
| 188 |
<i class="fas fa-check-circle text-[#23d7d6] mt-1 mr-3"></i>
|
| 189 |
-
<span>
|
| 190 |
</li>
|
| 191 |
</ul>
|
| 192 |
</div>
|
|
@@ -199,108 +165,178 @@ body {
|
|
| 199 |
<section class="py-20 bg-gradient-to-b from-gray-900 to-black">
|
| 200 |
<div class="container mx-auto px-4">
|
| 201 |
<div class="text-center mb-16">
|
| 202 |
-
<h2 class="text-3xl md:text-4xl font-bold mb-4 bg-gradient-to-r from-blue-400 to-blue-600 bg-clip-text text-transparent">Our Departments</h2>
|
| 203 |
-
<p class="max-w-2xl mx-auto text-gray-400">
|
| 204 |
</div>
|
| 205 |
|
| 206 |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-5 gap-8">
|
| 207 |
<!-- LSPD -->
|
| 208 |
<div class="department-card bg-gray-800 rounded-lg overflow-hidden hover:bg-gray-700">
|
| 209 |
<div class="h-48 bg-gradient-to-br from-[#23d7d6] to-[#327aaf] flex items-center justify-center" oncontextmenu="return false;">
|
| 210 |
-
<img src="
|
| 211 |
</div>
|
| 212 |
<div class="p-6">
|
| 213 |
<h3 class="text-xl font-bold mb-2 text-blue-400">Los Santos Police Department</h3>
|
| 214 |
-
<p class="text-gray-400 mb-4">
|
| 215 |
-
<a href="#" class="text-blue-400 hover:text-blue-300 font-semibold">Learn More <i class="fas fa-arrow-right ml-1"></i></a>
|
| 216 |
</div>
|
| 217 |
</div>
|
| 218 |
|
| 219 |
<!-- BCSO -->
|
| 220 |
<div class="department-card bg-gray-800 rounded-lg overflow-hidden hover:bg-gray-700">
|
| 221 |
<div class="h-48 bg-blue-800 flex items-center justify-center" oncontextmenu="return false;">
|
| 222 |
-
<img src="
|
| 223 |
</div>
|
| 224 |
<div class="p-6">
|
| 225 |
<h3 class="text-xl font-bold mb-2 text-blue-400">Blaine County Sheriff's Office</h3>
|
| 226 |
-
<p class="text-gray-400 mb-4">
|
| 227 |
-
<a href="#" class="text-blue-400 hover:text-blue-300 font-semibold">Learn More <i class="fas fa-arrow-right ml-1"></i></a>
|
| 228 |
</div>
|
| 229 |
</div>
|
| 230 |
|
| 231 |
<!-- EMS -->
|
| 232 |
<div class="department-card bg-gray-800 rounded-lg overflow-hidden hover:bg-gray-700">
|
| 233 |
-
<div class="h-48 bg-
|
| 234 |
-
<img src="
|
| 235 |
</div>
|
| 236 |
<div class="p-6">
|
| 237 |
-
<h3 class="text-xl font-bold mb-2 text-
|
| 238 |
-
<p class="text-gray-400 mb-4">
|
| 239 |
-
<a href="#" class="text-red-400 hover:text-red-300 font-semibold">Learn More <i class="fas fa-arrow-right ml-1"></i></a>
|
| 240 |
</div>
|
| 241 |
</div>
|
| 242 |
|
| 243 |
<!-- DOJ -->
|
| 244 |
<div class="department-card bg-gray-800 rounded-lg overflow-hidden hover:bg-gray-700">
|
| 245 |
<div class="h-48 bg-purple-900 flex items-center justify-center" oncontextmenu="return false;">
|
| 246 |
-
<img src="
|
| 247 |
</div>
|
| 248 |
<div class="p-6">
|
| 249 |
-
<h3 class="text-xl font-bold mb-2 text-purple-400">
|
| 250 |
-
<p class="text-gray-400 mb-4">
|
| 251 |
-
<a href="#" class="text-purple-400 hover:text-purple-300 font-semibold">Learn More <i class="fas fa-arrow-right ml-1"></i></a>
|
| 252 |
</div>
|
| 253 |
</div>
|
| 254 |
|
| 255 |
<!-- Fire Department -->
|
| 256 |
<div class="department-card bg-gray-800 rounded-lg overflow-hidden hover:bg-gray-700">
|
| 257 |
<div class="h-48 bg-orange-900 flex items-center justify-center" oncontextmenu="return false;">
|
| 258 |
-
<img src="
|
| 259 |
</div>
|
| 260 |
<div class="p-6">
|
| 261 |
<h3 class="text-xl font-bold mb-2 text-orange-400">Fire Department</h3>
|
| 262 |
-
<p class="text-gray-400 mb-4">
|
| 263 |
-
<a href="#" class="text-orange-400 hover:text-orange-300 font-semibold">Learn More <i class="fas fa-arrow-right ml-1"></i></a>
|
| 264 |
</div>
|
| 265 |
</div>
|
| 266 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 267 |
|
| 268 |
-
<div class="
|
| 269 |
-
<
|
| 270 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 271 |
</a>
|
| 272 |
</div>
|
| 273 |
</div>
|
| 274 |
</section>
|
| 275 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 276 |
<!-- Footer -->
|
| 277 |
<footer class="bg-black py-12 border-t border-gray-800">
|
| 278 |
<div class="container mx-auto px-4">
|
| 279 |
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
|
| 280 |
<div>
|
| 281 |
<div class="flex items-center mb-4">
|
| 282 |
-
<img src="
|
| 283 |
</div>
|
| 284 |
-
<p class="text-gray-400">A
|
| 285 |
</div>
|
| 286 |
|
| 287 |
<div>
|
| 288 |
<h4 class="text-lg font-semibold mb-4 text-white">Quick Links</h4>
|
| 289 |
<ul class="space-y-2">
|
| 290 |
-
<li><a href="
|
| 291 |
-
<li><a href="
|
| 292 |
-
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">
|
| 293 |
-
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Departments</a></li>
|
| 294 |
</ul>
|
| 295 |
</div>
|
| 296 |
|
| 297 |
<div>
|
| 298 |
<h4 class="text-lg font-semibold mb-4 text-white">Connect</h4>
|
| 299 |
<ul class="space-y-2">
|
| 300 |
-
<li><a href="
|
| 301 |
-
<li><a href="
|
| 302 |
-
<li><a href="
|
| 303 |
-
<li><a href="
|
| 304 |
</ul>
|
| 305 |
</div>
|
| 306 |
|
|
@@ -315,14 +351,94 @@ body {
|
|
| 315 |
</div>
|
| 316 |
</div>
|
| 317 |
</div>
|
| 318 |
-
|
| 319 |
<div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-500">
|
| 320 |
<p>© 2023 Atlantic Shores Roleplay. All rights reserved. | Developed By RedneckRyan</p>
|
| 321 |
</div>
|
| 322 |
</div>
|
| 323 |
</footer>
|
| 324 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 325 |
<script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 326 |
// Animated counter for player count
|
| 327 |
function animateCounter(elementId, target, duration = 2000) {
|
| 328 |
const element = document.getElementById(elementId);
|
|
@@ -344,12 +460,7 @@ body {
|
|
| 344 |
// Start counters when page loads
|
| 345 |
window.addEventListener('load', () => {
|
| 346 |
// Simulate 87 players online
|
| 347 |
-
animateCounter('playerCount',
|
| 348 |
-
});
|
| 349 |
-
|
| 350 |
-
// Mobile menu toggle (would need actual implementation)
|
| 351 |
-
document.querySelector('.md\\:hidden').addEventListener('click', () => {
|
| 352 |
-
alert('Mobile menu would open here in a full implementation');
|
| 353 |
});
|
| 354 |
</script>
|
| 355 |
<script>
|
|
@@ -360,5 +471,6 @@ body {
|
|
| 360 |
}
|
| 361 |
});
|
| 362 |
</script>
|
| 363 |
-
<
|
|
|
|
| 364 |
</html>
|
|
|
|
| 1 |
+
|
| 2 |
<!DOCTYPE html>
|
| 3 |
<html lang="en">
|
| 4 |
<head>
|
| 5 |
<meta charset="UTF-8">
|
| 6 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 7 |
+
<title>Atlantic Shores Roleplay | Home</title>
|
|
|
|
| 8 |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
| 9 |
+
<link rel="stylesheet" href="style.css">
|
| 10 |
+
<link rel="icon" href="Assets/fav.png"/>
|
| 11 |
+
|
| 12 |
+
<!-- SEO Meta Tags -->
|
| 13 |
+
<meta name="description" content="Atlantic Shores Roleplay is a FiveM community for players aged 18 and older, set in Key West, Florida. Join a realistic roleplay experience today!">
|
| 14 |
+
<meta name="keywords" content="Atlantic Shores Roleplay, FiveM, GTA V Roleplay, Key West, Florida Roleplay, 18+ Community, Realistic Roleplay">
|
| 15 |
+
<meta name="robots" content="index, follow">
|
| 16 |
+
|
| 17 |
+
<!-- Open Graph Tags -->
|
| 18 |
+
<meta property="og:type" content="website">
|
| 19 |
+
<meta property="og:title" content="Atlantic Shores Roleplay">
|
| 20 |
+
<meta property="og:description" content="Atlantic Shores Roleplay is a FiveM community for players aged 18 and older, set in Key West, Florida. Join a realistic roleplay experience today!">
|
| 21 |
+
<meta property="og:image" content="https://asrp.us/Assets/Heya.png">
|
| 22 |
+
<meta property="og:url" content="https://asrp.us">
|
| 23 |
+
<meta property="og:site_name" content="Atlantic Shores Roleplay">
|
| 24 |
+
|
| 25 |
+
<!-- Twitter Card Tags -->
|
| 26 |
+
<meta name="twitter:card" content="summary_large_image">
|
| 27 |
+
<meta name="twitter:title" content="Atlantic Shores Roleplay">
|
| 28 |
+
<meta name="twitter:description" content="Atlantic Shores Roleplay is a 18+ FiveM Community based in Key West, Florida">
|
| 29 |
+
<meta name="twitter:image" content="https://asrp.us/Assets/Heya.png">
|
| 30 |
+
|
| 31 |
+
<!-- Structured Data (Schema.org) -->
|
| 32 |
+
<script type="application/ld+json">
|
| 33 |
+
{
|
| 34 |
+
"@context": "https://schema.org",
|
| 35 |
+
"@type": "Organization",
|
| 36 |
+
"url": "https://asrp.us",
|
| 37 |
+
"logo": "https://asrp.us/Assets/logo.png",
|
| 38 |
+
"name": "Atlantic Shores Roleplay",
|
| 39 |
+
"description": "Atlantic Shores Roleplay is a FiveM community for players aged 18 and older, set in Key West, Florida. Join a realistic roleplay experience today!",
|
| 40 |
+
"sameAs": [
|
| 41 |
+
"https://facebook.com/AtlanticShoresRP",
|
| 42 |
+
"https://twitter.com/AtlanticShoresRP"
|
| 43 |
+
]
|
| 44 |
+
}
|
| 45 |
+
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 46 |
</head>
|
| 47 |
<body class="bg-black text-gray-100 font-sans">
|
| 48 |
<!-- Header with Logo and Navigation -->
|
| 49 |
<header class="fixed w-full z-50 bg-black bg-opacity-90 shadow-lg">
|
| 50 |
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
|
| 51 |
<div class="flex items-center">
|
| 52 |
+
<img src="Assets/logo.png" alt="Atlantic Shores Logo" class="h-[50px] w-[320px]" align=left>
|
| 53 |
</div>
|
| 54 |
+
<nav class="hidden md:flex space-x-6">
|
| 55 |
+
<a href="https://asrp.us" class="nav-link px-3 py-2 text-gray-300 hover:text-white hover:bg-gradient-to-r hover:from-[#23d7d6]/10 hover:to-[#327aaf]/10 rounded-lg transition-all duration-300 flex items-center">
|
| 56 |
+
<i class="fas fa-home mr-2 text-sm"></i> Home
|
| 57 |
+
</a>
|
| 58 |
+
<a href="#about" class="nav-link px-3 py-2 text-gray-300 hover:text-white hover:bg-gradient-to-r hover:from-[#23d7d6]/10 hover:to-[#327aaf]/10 rounded-lg transition-all duration-300 flex items-center">
|
| 59 |
+
<i class="fas fa-info-circle mr-2 text-sm"></i> About
|
| 60 |
+
</a>
|
| 61 |
+
<a href="#dept" class="nav-link px-3 py-2 text-gray-300 hover:text-white hover:bg-gradient-to-r hover:from-[#23d7d6]/10 hover:to-[#327aaf]/10 rounded-lg transition-all duration-300 flex items-center">
|
| 62 |
+
<i class="fas fa-building mr-2 text-sm"></i> Departments
|
| 63 |
+
</a>
|
| 64 |
+
<a href="https://docs.google.com/document/d/1smQRxW98qs1LAvXO69y3h4DE5JOkwmAURhBy3I4_usc/edit?tab=t.0" class="nav-link px-3 py-2 text-gray-300 hover:text-white hover:bg-gradient-to-r hover:from-[#23d7d6]/10 hover:to-[#327aaf]/10 rounded-lg transition-all duration-300 flex items-center">
|
| 65 |
+
<i class="fas fa-book mr-2 text-sm"></i> Requirements
|
| 66 |
+
</a>
|
| 67 |
+
<a href="https://asrp.us/apply" class="nav-link px-3 py-2 text-gray-300 hover:text-white hover:bg-gradient-to-r hover:from-[#23d7d6]/10 hover:to-[#327aaf]/10 rounded-lg transition-all duration-300 flex items-center">
|
| 68 |
+
<i class="fas fa-user-plus mr-2 text-sm"></i> Apply Now
|
| 69 |
+
</a>
|
| 70 |
</nav>
|
| 71 |
+
<button class="md:hidden text-gray-300 hover:text-white bg-gray-800 hover:bg-gray-700 p-2 rounded-lg transition-colors duration-300">
|
| 72 |
+
<i class="fas fa-bars text-xl"></i>
|
| 73 |
</button>
|
| 74 |
</div>
|
| 75 |
</header>
|
|
|
|
| 93 |
</div>
|
| 94 |
|
| 95 |
<div class="flex flex-wrap justify-center gap-4 mb-16">
|
| 96 |
+
<a href="https://asrp.us/apply" class="px-8 py-3 bg-gradient-to-r from-[#23d7d6] to-[#327aaf] hover:from-[#327aaf] hover:to-[#43067c] rounded-full font-semibold transition duration-300 transform hover:scale-105 shadow-lg">
|
| 97 |
<i class="fas fa-user-plus mr-2"></i> Apply Now
|
| 98 |
</a>
|
| 99 |
+
<a href="https://docs.google.com/document/d/1smQRxW98qs1LAvXO69y3h4DE5JOkwmAURhBy3I4_usc/edit?tab=t.0" class="px-8 py-3 bg-transparent border-2 border-blue-500 hover:bg-blue-900 hover:bg-opacity-30 rounded-full font-semibold transition duration-300 transform hover:scale-105">
|
| 100 |
<i class="fas fa-book-open mr-2"></i> Requirements
|
| 101 |
</a>
|
| 102 |
</div>
|
|
|
|
| 127 |
<section class="py-20 bg-gradient-to-b from-gray-900 to-black">
|
| 128 |
<div class="container mx-auto px-4">
|
| 129 |
<div class="text-center mb-16">
|
| 130 |
+
<h2 id="about" class="text-3xl md:text-4xl font-bold mb-4 bg-gradient-to-r from-blue-400 to-blue-600 bg-clip-text text-transparent">Our Community</h2>
|
| 131 |
+
<p class="max-w-4xl mx-auto text-gray-400">What Sets Us Apart.</p>
|
| 132 |
</div>
|
| 133 |
|
| 134 |
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center">
|
| 135 |
<div>
|
| 136 |
<h3 class="text-2xl font-bold mb-4 text-white">Our Mission</h3>
|
| 137 |
+
<p class="text-gray-400 mb-6">Our mission is to create an immersive, well-balanced roleplay environment rooted in the unique setting of Key West, Florida. We aim to provide a space where players can enjoy realistic law enforcement, emergency services, and civilian experiences, all while fostering community, creativity, and respect for quality roleplay. Every department, from public safety to private security, plays a part in keeping the world alive and engaging and we're committed to maintaining a server where that effort shows.</p>
|
| 138 |
|
| 139 |
<h3 class="text-2xl font-bold mb-4 text-white">What We Offer</h3>
|
| 140 |
<ul class="space-y-3 text-gray-400">
|
| 141 |
<li class="flex items-start">
|
| 142 |
<i class="fas fa-check-circle text-[#23d7d6] mt-1 mr-3"></i>
|
| 143 |
+
<span>Whitelisted, high-quality roleplay with active staff</span>
|
| 144 |
</li>
|
| 145 |
<li class="flex items-start">
|
| 146 |
<i class="fas fa-check-circle text-[#23d7d6] mt-1 mr-3"></i>
|
| 147 |
+
<span>Custom Assets And Active Development</span>
|
| 148 |
</li>
|
| 149 |
<li class="flex items-start">
|
| 150 |
<i class="fas fa-check-circle text-[#23d7d6] mt-1 mr-3"></i>
|
| 151 |
+
<span>Multiple Departments And Sub-Divisons</span>
|
| 152 |
</li>
|
| 153 |
<li class="flex items-start">
|
| 154 |
<i class="fas fa-check-circle text-[#23d7d6] mt-1 mr-3"></i>
|
| 155 |
+
<span>Fun And Engaging Roleplay</span>
|
| 156 |
</li>
|
| 157 |
</ul>
|
| 158 |
</div>
|
|
|
|
| 165 |
<section class="py-20 bg-gradient-to-b from-gray-900 to-black">
|
| 166 |
<div class="container mx-auto px-4">
|
| 167 |
<div class="text-center mb-16">
|
| 168 |
+
<h2 id="dept" class="text-3xl md:text-4xl font-bold mb-4 bg-gradient-to-r from-blue-400 to-blue-600 bg-clip-text text-transparent">Our Departments</h2>
|
| 169 |
+
<p class="max-w-2xl mx-auto text-gray-400">Be Who You Want To Be.</p>
|
| 170 |
</div>
|
| 171 |
|
| 172 |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-5 gap-8">
|
| 173 |
<!-- LSPD -->
|
| 174 |
<div class="department-card bg-gray-800 rounded-lg overflow-hidden hover:bg-gray-700">
|
| 175 |
<div class="h-48 bg-gradient-to-br from-[#23d7d6] to-[#327aaf] flex items-center justify-center" oncontextmenu="return false;">
|
| 176 |
+
<img src="Assets/Depts/lspd.png" alt="LSPD Logo" class="h-32 w-32 object-contain">
|
| 177 |
</div>
|
| 178 |
<div class="p-6">
|
| 179 |
<h3 class="text-xl font-bold mb-2 text-blue-400">Los Santos Police Department</h3>
|
| 180 |
+
<p class="text-gray-400 mb-4">We will ensure public safety, enforce the law with integrity, and provide extraordinary service.</p>
|
|
|
|
| 181 |
</div>
|
| 182 |
</div>
|
| 183 |
|
| 184 |
<!-- BCSO -->
|
| 185 |
<div class="department-card bg-gray-800 rounded-lg overflow-hidden hover:bg-gray-700">
|
| 186 |
<div class="h-48 bg-blue-800 flex items-center justify-center" oncontextmenu="return false;">
|
| 187 |
+
<img src="Assets/Depts/BCSO.png" alt="BCSO Logo" class="h-32 w-32 object-contain">
|
| 188 |
</div>
|
| 189 |
<div class="p-6">
|
| 190 |
<h3 class="text-xl font-bold mb-2 text-blue-400">Blaine County Sheriff's Office</h3>
|
| 191 |
+
<p class="text-gray-400 mb-4">The Blaine County Sheriff’s Office is committed to excellence in law enforcement, ensuring the safety of our residents and visitors</p>
|
|
|
|
| 192 |
</div>
|
| 193 |
</div>
|
| 194 |
|
| 195 |
<!-- EMS -->
|
| 196 |
<div class="department-card bg-gray-800 rounded-lg overflow-hidden hover:bg-gray-700">
|
| 197 |
+
<div class="h-48 bg-gradient-to-br from-[#23d7d6] to-[#327aaf] flex items-center justify-center" oncontextmenu="return false;">
|
| 198 |
+
<img src="Assets/Depts/SAHP.png" alt="EMS Logo" class="h-32 w-32 object-contain">
|
| 199 |
</div>
|
| 200 |
<div class="p-6">
|
| 201 |
+
<h3 class="text-xl font-bold mb-2 text-blue-400">San Andreas Highway Patrol</h3>
|
| 202 |
+
<p class="text-gray-400 mb-4">The San Andreas Highway Patrol Is Dedicated To Protecting The Visitors And Residents Of San Andreas</p>
|
|
|
|
| 203 |
</div>
|
| 204 |
</div>
|
| 205 |
|
| 206 |
<!-- DOJ -->
|
| 207 |
<div class="department-card bg-gray-800 rounded-lg overflow-hidden hover:bg-gray-700">
|
| 208 |
<div class="h-48 bg-purple-900 flex items-center justify-center" oncontextmenu="return false;">
|
| 209 |
+
<img src="Assets/Depts/civ.png" alt="DOJ Logo" class="h-32 w-32 object-contain">
|
| 210 |
</div>
|
| 211 |
<div class="p-6">
|
| 212 |
+
<h3 class="text-xl font-bold mb-2 text-purple-400">Civilian Operations</h3>
|
| 213 |
+
<p class="text-gray-400 mb-4">It is our ambition to ensure San Andreas comes to life in a manner that all can enjoy and participate in.</p>
|
|
|
|
| 214 |
</div>
|
| 215 |
</div>
|
| 216 |
|
| 217 |
<!-- Fire Department -->
|
| 218 |
<div class="department-card bg-gray-800 rounded-lg overflow-hidden hover:bg-gray-700">
|
| 219 |
<div class="h-48 bg-orange-900 flex items-center justify-center" oncontextmenu="return false;">
|
| 220 |
+
<img src="Assets/Depts/FIRE.png" alt="Fire Department Logo" class="h-32 w-32 object-contain">
|
| 221 |
</div>
|
| 222 |
<div class="p-6">
|
| 223 |
<h3 class="text-xl font-bold mb-2 text-orange-400">Fire Department</h3>
|
| 224 |
+
<p class="text-gray-400 mb-4">The mission of San Andreas Fire Operations is to ensure our citizen and visitors safety</p>
|
|
|
|
| 225 |
</div>
|
| 226 |
</div>
|
| 227 |
</div>
|
| 228 |
+
</div>
|
| 229 |
+
</section>
|
| 230 |
+
|
| 231 |
+
<!-- Requirements Section -->
|
| 232 |
+
<section class="py-20 bg-gradient-to-b from-gray-900 to-black">
|
| 233 |
+
<div class="container mx-auto px-4">
|
| 234 |
+
<div class="text-center mb-16">
|
| 235 |
+
<h2 class="text-3xl md:text-4xl font-bold mb-4 bg-gradient-to-r from-blue-400 to-blue-600 bg-clip-text text-transparent">Community Requirements</h2>
|
| 236 |
+
<p class="max-w-2xl mx-auto text-gray-400">What you'll need to join our community</p>
|
| 237 |
+
</div>
|
| 238 |
|
| 239 |
+
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-6xl mx-auto">
|
| 240 |
+
<!-- Requirement 1 -->
|
| 241 |
+
<div class="bg-gray-800 rounded-lg p-8 hover:bg-gray-700 transition duration-300">
|
| 242 |
+
<div class="text-blue-400 text-4xl mb-4">
|
| 243 |
+
<i class="fas fa-microphone"></i>
|
| 244 |
+
</div>
|
| 245 |
+
<h3 class="text-xl font-bold mb-3 text-white">Microphone</h3>
|
| 246 |
+
<p class="text-gray-400">A working microphone is required for all members to ensure quality roleplay.</p>
|
| 247 |
+
</div>
|
| 248 |
+
|
| 249 |
+
<!-- Requirement 2 -->
|
| 250 |
+
<div class="bg-gray-800 rounded-lg p-8 hover:bg-gray-700 transition duration-300">
|
| 251 |
+
<div class="text-blue-400 text-4xl mb-4">
|
| 252 |
+
<i class="fas fa-user-check"></i>
|
| 253 |
+
</div>
|
| 254 |
+
<h3 class="text-xl font-bold mb-3 text-white">Age Requirement</h3>
|
| 255 |
+
<p class="text-gray-400">You must be at least 18 years old to join our community.</p>
|
| 256 |
+
</div>
|
| 257 |
+
|
| 258 |
+
<!-- Requirement 3 -->
|
| 259 |
+
<div class="bg-gray-800 rounded-lg p-8 hover:bg-gray-700 transition duration-300">
|
| 260 |
+
<div class="text-blue-400 text-4xl mb-4">
|
| 261 |
+
<i class="fas fa-gamepad"></i>
|
| 262 |
+
</div>
|
| 263 |
+
<h3 class="text-xl font-bold mb-3 text-white">FiveM Ready</h3>
|
| 264 |
+
<p class="text-gray-400">You'll need a legitimate copy of GTA V and FiveM installed to play on our server.</p>
|
| 265 |
+
</div>
|
| 266 |
+
</div>
|
| 267 |
+
|
| 268 |
+
<div class="text-center mt-12">
|
| 269 |
+
<a href="https://docs.google.com/document/d/1smQRxW98qs1LAvXO69y3h4DE5JOkwmAURhBy3I4_usc/edit?tab=t.0" class="inline-block px-8 py-3 bg-gradient-to-r from-[#23d7d6] to-[#327aaf] hover:from-[#327aaf] hover:to-[#43067c] rounded-full font-semibold transition duration-300 transform hover:scale-105 shadow-lg">
|
| 270 |
+
<i class="fas fa-info-circle mr-2"></i> Full Requirements Guide
|
| 271 |
</a>
|
| 272 |
</div>
|
| 273 |
</div>
|
| 274 |
</section>
|
| 275 |
|
| 276 |
+
<!-- Image Gallery Section
|
| 277 |
+
<section class="py-20 bg-gradient-to-b from-gray-900 to-black">
|
| 278 |
+
<div class="container mx-auto px-4">
|
| 279 |
+
<div class="text-center mb-16">
|
| 280 |
+
<h2 class="text-3xl md:text-4xl font-bold mb-4 bg-gradient-to-r from-blue-400 to-blue-600 bg-clip-text text-transparent">Community Gallery</h2>
|
| 281 |
+
<p class="max-w-2xl mx-auto text-gray-400">See moments from our community</p>
|
| 282 |
+
</div>
|
| 283 |
+
|
| 284 |
+
<div class="relative max-w-4xl mx-auto">
|
| 285 |
+
<div class="relative h-[500px] overflow-hidden rounded-xl">
|
| 286 |
+
<div class="gallery-slides flex transition-transform duration-500 ease-in-out">
|
| 287 |
+
<div class="min-w-full">
|
| 288 |
+
<img src="Assets/Gallery/1.png" alt="Community Event" class="w-full h-96 object-cover">
|
| 289 |
+
</div>
|
| 290 |
+
<div class="min-w-full">
|
| 291 |
+
<img src="https://via.placeholder.com/1366x768/23d7d6/ffffff?text=Roleplay+Scene" alt="Roleplay Scene" class="w-full h-[500px] object-cover">
|
| 292 |
+
</div>
|
| 293 |
+
<div class="min-w-full">
|
| 294 |
+
<img src="https://via.placeholder.com/1366x768/43067c/ffffff?text=Department+Training" alt="Department Training" class="w-full h-[500px] object-cover">
|
| 295 |
+
</div>
|
| 296 |
+
</div>
|
| 297 |
+
</div>
|
| 298 |
+
<button class="gallery-prev absolute left-4 top-1/2 -translate-y-1/2 bg-black bg-opacity-50 text-white p-3 rounded-full hover:bg-opacity-75 transition">
|
| 299 |
+
<i class="fas fa-chevron-left text-xl"></i>
|
| 300 |
+
</button>
|
| 301 |
+
<button class="gallery-next absolute right-4 top-1/2 -translate-y-1/2 bg-black bg-opacity-50 text-white p-3 rounded-full hover:bg-opacity-75 transition">
|
| 302 |
+
<i class="fas fa-chevron-right text-xl"></i>
|
| 303 |
+
</button>
|
| 304 |
+
<div class="flex justify-center mt-4 space-x-2">
|
| 305 |
+
<button class="gallery-indicator w-3 h-3 rounded-full bg-gray-600 hover:bg-gray-400 transition" data-slide="0"></button>
|
| 306 |
+
<button class="gallery-indicator w-3 h-3 rounded-full bg-gray-600 hover:bg-gray-400 transition" data-slide="1"></button>
|
| 307 |
+
<button class="gallery-indicator w-3 h-3 rounded-full bg-gray-600 hover:bg-gray-400 transition" data-slide="2"></button>
|
| 308 |
+
</div>
|
| 309 |
+
</div>
|
| 310 |
+
</div>
|
| 311 |
+
</section>
|
| 312 |
+
-->
|
| 313 |
<!-- Footer -->
|
| 314 |
<footer class="bg-black py-12 border-t border-gray-800">
|
| 315 |
<div class="container mx-auto px-4">
|
| 316 |
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
|
| 317 |
<div>
|
| 318 |
<div class="flex items-center mb-4">
|
| 319 |
+
<img src="Assets/fav.png" alt="Atlantic Shores Logo" class="h-[190px] w-[220px]">
|
| 320 |
</div>
|
| 321 |
+
<p class="text-gray-400">A 18+ Whitelisted FiveM Community Based In Key West Florida. We Strive To Create A Inclusive And Welcoming Community</p>
|
| 322 |
</div>
|
| 323 |
|
| 324 |
<div>
|
| 325 |
<h4 class="text-lg font-semibold mb-4 text-white">Quick Links</h4>
|
| 326 |
<ul class="space-y-2">
|
| 327 |
+
<li><a href="https://asrp.us" class="text-gray-400 hover:text-blue-400 transition">Home</a></li>
|
| 328 |
+
<li><a href="https://asrp.us/apply" class="text-gray-400 hover:text-blue-400 transition">Apply</a></li>
|
| 329 |
+
<li><a href="#dept" class="text-gray-400 hover:text-blue-400 transition">Departments</a></li>
|
|
|
|
| 330 |
</ul>
|
| 331 |
</div>
|
| 332 |
|
| 333 |
<div>
|
| 334 |
<h4 class="text-lg font-semibold mb-4 text-white">Connect</h4>
|
| 335 |
<ul class="space-y-2">
|
| 336 |
+
<li><a href="https://discord.gg/js6qx7PbQC" class="text-gray-400 hover:text-blue-400 transition"><i class="fab fa-discord mr-2"></i> Discord</a></li>
|
| 337 |
+
<li><a href="https://x.com/ASRP_Official_" class="text-gray-400 hover:text-blue-400 transition"><i class="fab fa-twitter mr-2"></i> Twitter</a></li>
|
| 338 |
+
<li><a href="https://www.youtube.com/@asrp.online" class="text-gray-400 hover:text-blue-400 transition"><i class="fab fa-youtube mr-2"></i> YouTube</a></li>
|
| 339 |
+
<li><a href="https://www.instagram.com/asrp.us/" class="text-gray-400 hover:text-blue-400 transition"><i class="fab fa-instagram mr-2"></i> Instagram</a></li>
|
| 340 |
</ul>
|
| 341 |
</div>
|
| 342 |
|
|
|
|
| 351 |
</div>
|
| 352 |
</div>
|
| 353 |
</div>
|
|
|
|
| 354 |
<div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-500">
|
| 355 |
<p>© 2023 Atlantic Shores Roleplay. All rights reserved. | Developed By RedneckRyan</p>
|
| 356 |
</div>
|
| 357 |
</div>
|
| 358 |
</footer>
|
| 359 |
|
| 360 |
+
<style>
|
| 361 |
+
.gallery-slides {
|
| 362 |
+
display: flex;
|
| 363 |
+
width: 300%;
|
| 364 |
+
}
|
| 365 |
+
.gallery-slide {
|
| 366 |
+
flex: 0 0 33.333%;
|
| 367 |
+
transition: transform 0.5s ease;
|
| 368 |
+
}
|
| 369 |
+
</style>
|
| 370 |
+
|
| 371 |
<script>
|
| 372 |
+
// Image Gallery Functionality
|
| 373 |
+
document.addEventListener('DOMContentLoaded', function() {
|
| 374 |
+
const slides = document.querySelector('.gallery-slides');
|
| 375 |
+
const prevBtn = document.querySelector('.gallery-prev');
|
| 376 |
+
const nextBtn = document.querySelector('.gallery-next');
|
| 377 |
+
const indicators = document.querySelectorAll('.gallery-indicator');
|
| 378 |
+
let currentIndex = 0;
|
| 379 |
+
let slideInterval;
|
| 380 |
+
|
| 381 |
+
function goToSlide(index) {
|
| 382 |
+
slides.style.transform = `translateX(-${index * 100}%)`;
|
| 383 |
+
currentIndex = index;
|
| 384 |
+
updateIndicators();
|
| 385 |
+
}
|
| 386 |
+
|
| 387 |
+
function nextSlide() {
|
| 388 |
+
currentIndex = (currentIndex + 1) % 3;
|
| 389 |
+
goToSlide(currentIndex);
|
| 390 |
+
}
|
| 391 |
+
|
| 392 |
+
function prevSlide() {
|
| 393 |
+
currentIndex = (currentIndex - 1 + 3) % 3;
|
| 394 |
+
goToSlide(currentIndex);
|
| 395 |
+
}
|
| 396 |
+
|
| 397 |
+
function updateIndicators() {
|
| 398 |
+
indicators.forEach((indicator, index) => {
|
| 399 |
+
indicator.classList.toggle('bg-blue-500', index === currentIndex);
|
| 400 |
+
indicator.classList.toggle('bg-gray-600', index !== currentIndex);
|
| 401 |
+
});
|
| 402 |
+
}
|
| 403 |
+
|
| 404 |
+
function startAutoSlide() {
|
| 405 |
+
slideInterval = setInterval(nextSlide, 5000);
|
| 406 |
+
}
|
| 407 |
+
|
| 408 |
+
function stopAutoSlide() {
|
| 409 |
+
clearInterval(slideInterval);
|
| 410 |
+
}
|
| 411 |
+
|
| 412 |
+
// Event listeners
|
| 413 |
+
nextBtn.addEventListener('click', () => {
|
| 414 |
+
stopAutoSlide();
|
| 415 |
+
nextSlide();
|
| 416 |
+
startAutoSlide();
|
| 417 |
+
});
|
| 418 |
+
|
| 419 |
+
prevBtn.addEventListener('click', () => {
|
| 420 |
+
stopAutoSlide();
|
| 421 |
+
prevSlide();
|
| 422 |
+
startAutoSlide();
|
| 423 |
+
});
|
| 424 |
+
|
| 425 |
+
indicators.forEach(indicator => {
|
| 426 |
+
indicator.addEventListener('click', () => {
|
| 427 |
+
stopAutoSlide();
|
| 428 |
+
goToSlide(parseInt(indicator.dataset.slide));
|
| 429 |
+
startAutoSlide();
|
| 430 |
+
});
|
| 431 |
+
});
|
| 432 |
+
|
| 433 |
+
// Start auto sliding
|
| 434 |
+
startAutoSlide();
|
| 435 |
+
|
| 436 |
+
// Pause on hover
|
| 437 |
+
const gallery = document.querySelector('.gallery-slides');
|
| 438 |
+
gallery.addEventListener('mouseenter', stopAutoSlide);
|
| 439 |
+
gallery.addEventListener('mouseleave', startAutoSlide);
|
| 440 |
+
});
|
| 441 |
+
|
| 442 |
// Animated counter for player count
|
| 443 |
function animateCounter(elementId, target, duration = 2000) {
|
| 444 |
const element = document.getElementById(elementId);
|
|
|
|
| 460 |
// Start counters when page loads
|
| 461 |
window.addEventListener('load', () => {
|
| 462 |
// Simulate 87 players online
|
| 463 |
+
animateCounter('playerCount', 3000);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 464 |
});
|
| 465 |
</script>
|
| 466 |
<script>
|
|
|
|
| 471 |
}
|
| 472 |
});
|
| 473 |
</script>
|
| 474 |
+
<script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"version":"2024.11.0","token":"326180491b2f4db492c1cd2edb37cc7a","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
|
| 475 |
+
</body>
|
| 476 |
</html>
|
style.css
CHANGED
|
@@ -1,28 +1,97 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
body {
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
}
|
| 5 |
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
}
|
| 10 |
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
margin-top: 5px;
|
| 16 |
}
|
| 17 |
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
}
|
| 25 |
|
| 26 |
-
|
| 27 |
-
|
|
|
|
| 28 |
}
|
|
|
|
| 1 |
+
|
| 2 |
+
:root {
|
| 3 |
+
--sky-blue: #7ec0ee;
|
| 4 |
+
--aqua: #00c0ff;
|
| 5 |
+
--glass-white: rgba(255, 255, 255, 0.7);
|
| 6 |
+
--glass-border: rgba(255, 255, 255, 0.3);
|
| 7 |
+
--glass-shadow: 0 8px 32px rgba(0, 192, 255, 0.2);
|
| 8 |
+
}
|
| 9 |
+
|
| 10 |
body {
|
| 11 |
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
| 12 |
+
background: linear-gradient(135deg, #7ec0ee, #00c0ff);
|
| 13 |
+
color: #333;
|
| 14 |
+
margin: 0;
|
| 15 |
+
padding: 0;
|
| 16 |
+
min-height: 100vh;
|
| 17 |
+
background-attachment: fixed;
|
| 18 |
+
}
|
| 19 |
+
|
| 20 |
+
.glass-panel {
|
| 21 |
+
background: var(--glass-white);
|
| 22 |
+
backdrop-filter: blur(10px);
|
| 23 |
+
-webkit-backdrop-filter: blur(10px);
|
| 24 |
+
border-radius: 16px;
|
| 25 |
+
border: 1px solid var(--glass-border);
|
| 26 |
+
box-shadow: var(--glass-shadow);
|
| 27 |
+
padding: 2rem;
|
| 28 |
+
margin: 1rem;
|
| 29 |
+
}
|
| 30 |
+
|
| 31 |
+
.btn-aero {
|
| 32 |
+
background: linear-gradient(to bottom, #7ec0ee, #00a8ff);
|
| 33 |
+
border: 1px solid rgba(255, 255, 255, 0.5);
|
| 34 |
+
border-radius: 24px;
|
| 35 |
+
color: white;
|
| 36 |
+
padding: 12px 24px;
|
| 37 |
+
font-weight: bold;
|
| 38 |
+
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
|
| 39 |
+
box-shadow: 0 4px 15px rgba(0, 192, 255, 0.3);
|
| 40 |
+
transition: all 0.3s ease;
|
| 41 |
+
}
|
| 42 |
+
|
| 43 |
+
.btn-aero:hover {
|
| 44 |
+
transform: translateY(-2px);
|
| 45 |
+
box-shadow: 0 6px 20px rgba(0, 192, 255, 0.4);
|
| 46 |
+
}
|
| 47 |
+
|
| 48 |
+
.aero-icon {
|
| 49 |
+
width: 64px;
|
| 50 |
+
height: 64px;
|
| 51 |
+
background: white;
|
| 52 |
+
border-radius: 50%;
|
| 53 |
+
display: flex;
|
| 54 |
+
align-items: center;
|
| 55 |
+
justify-content: center;
|
| 56 |
+
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
|
| 57 |
+
margin: 0 auto 1rem;
|
| 58 |
+
}
|
| 59 |
+
|
| 60 |
+
.aero-icon i {
|
| 61 |
+
font-size: 32px;
|
| 62 |
+
color: var(--aqua);
|
| 63 |
+
}
|
| 64 |
+
|
| 65 |
+
h1, h2, h3 {
|
| 66 |
+
color: #0066cc;
|
| 67 |
+
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
|
| 68 |
+
}
|
| 69 |
+
|
| 70 |
+
/* Windows Vista/7 style scrollbar */
|
| 71 |
+
::-webkit-scrollbar {
|
| 72 |
+
width: 12px;
|
| 73 |
}
|
| 74 |
|
| 75 |
+
::-webkit-scrollbar-track {
|
| 76 |
+
background: rgba(255, 255, 255, 0.3);
|
| 77 |
+
border-radius: 10px;
|
| 78 |
}
|
| 79 |
|
| 80 |
+
::-webkit-scrollbar-thumb {
|
| 81 |
+
background: linear-gradient(to bottom, #7ec0ee, #00a8ff);
|
| 82 |
+
border-radius: 10px;
|
| 83 |
+
border: 2px solid rgba(255, 255, 255, 0.5);
|
|
|
|
| 84 |
}
|
| 85 |
|
| 86 |
+
/* Bubble elements */
|
| 87 |
+
.bubble {
|
| 88 |
+
position: absolute;
|
| 89 |
+
background: rgba(255, 255, 255, 0.3);
|
| 90 |
+
border-radius: 50%;
|
| 91 |
+
animation: float 15s infinite ease-in-out;
|
| 92 |
}
|
| 93 |
|
| 94 |
+
@keyframes float {
|
| 95 |
+
0%, 100% { transform: translateY(0) rotate(0deg); }
|
| 96 |
+
50% { transform: translateY(-20px) rotate(180deg); }
|
| 97 |
}
|