Put an image placeholder for the Brand Logo, centered.
Browse files- index.html +3 -3
- style.css +13 -0
index.html
CHANGED
|
@@ -60,15 +60,15 @@
|
|
| 60 |
</div>
|
| 61 |
</header>
|
| 62 |
<!-- Brand Logo -->
|
| 63 |
-
<div class="relative z-10 text-center pt-8">
|
|
|
|
| 64 |
<div class="brand-logo text-4xl md:text-5xl font-bold inline-block">
|
| 65 |
<span class="text-neonblue drop-shadow-[0_0_8px_rgba(15,240,252,0.7)]">FiveX</span>
|
| 66 |
<span class="text-neonmagenta drop-shadow-[0_0_8px_rgba(255,0,255,0.7)]">Bet</span>
|
| 67 |
<span class="text-white text-sm">.com</span>
|
| 68 |
</div>
|
| 69 |
</div>
|
| 70 |
-
|
| 71 |
-
<!-- Main Hero -->
|
| 72 |
<main class="relative z-10 h-full">
|
| 73 |
<div class="container mx-auto px-6 h-full flex flex-col justify-center items-center">
|
| 74 |
<!-- Title Block -->
|
|
|
|
| 60 |
</div>
|
| 61 |
</header>
|
| 62 |
<!-- Brand Logo -->
|
| 63 |
+
<div class="relative z-10 text-center pt-8 flex flex-col items-center">
|
| 64 |
+
<img src="http://static.photos/technology/320x240/42" alt="FiveXBet Logo" class="w-32 h-32 mb-4 rounded-full border-2 border-neonblue/50 object-cover">
|
| 65 |
<div class="brand-logo text-4xl md:text-5xl font-bold inline-block">
|
| 66 |
<span class="text-neonblue drop-shadow-[0_0_8px_rgba(15,240,252,0.7)]">FiveX</span>
|
| 67 |
<span class="text-neonmagenta drop-shadow-[0_0_8px_rgba(255,0,255,0.7)]">Bet</span>
|
| 68 |
<span class="text-white text-sm">.com</span>
|
| 69 |
</div>
|
| 70 |
</div>
|
| 71 |
+
<!-- Main Hero -->
|
|
|
|
| 72 |
<main class="relative z-10 h-full">
|
| 73 |
<div class="container mx-auto px-6 h-full flex flex-col justify-center items-center">
|
| 74 |
<!-- Title Block -->
|
style.css
CHANGED
|
@@ -354,6 +354,19 @@ box-shadow: 0 0 30px rgba(15, 240, 252, 0.5),
|
|
| 354 |
.brand-logo:hover {
|
| 355 |
transform: scale(1.05);
|
| 356 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 357 |
/* Star Field */
|
| 358 |
.cosmic-web::before {
|
| 359 |
content: '';
|
|
|
|
| 354 |
.brand-logo:hover {
|
| 355 |
transform: scale(1.05);
|
| 356 |
}
|
| 357 |
+
|
| 358 |
+
/* Logo Image Styles */
|
| 359 |
+
.brand-logo img {
|
| 360 |
+
transition: all 0.3s ease;
|
| 361 |
+
box-shadow: 0 0 15px rgba(15, 240, 252, 0.5),
|
| 362 |
+
0 0 30px rgba(255, 0, 255, 0.3);
|
| 363 |
+
}
|
| 364 |
+
|
| 365 |
+
.brand-logo img:hover {
|
| 366 |
+
transform: scale(1.05);
|
| 367 |
+
box-shadow: 0 0 25px rgba(15, 240, 252, 0.7),
|
| 368 |
+
0 0 45px rgba(255, 0, 255, 0.5);
|
| 369 |
+
}
|
| 370 |
/* Star Field */
|
| 371 |
.cosmic-web::before {
|
| 372 |
content: '';
|