Spaces:
Running
Running
Aleksandr Sashka commited on
сделай адаптацию и убери смещения макета
Browse files- index.html +29 -23
index.html
CHANGED
|
@@ -23,10 +23,16 @@
|
|
| 23 |
max-width: 1200px;
|
| 24 |
margin: 0 auto;
|
| 25 |
position: relative;
|
|
|
|
|
|
|
|
|
|
| 26 |
}
|
| 27 |
.header-container {
|
| 28 |
-
width: 1200px;
|
| 29 |
margin: 0 auto;
|
|
|
|
|
|
|
|
|
|
| 30 |
}
|
| 31 |
.bebas {
|
| 32 |
font-family: 'Montserrat', sans-serif;
|
|
@@ -36,14 +42,15 @@
|
|
| 36 |
color: var(--primary-gold);
|
| 37 |
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
|
| 38 |
}
|
| 39 |
-
|
| 40 |
.card-gradient {
|
| 41 |
background: linear-gradient(135deg, rgba(139, 0, 0, 0.95) 0%, rgba(255, 0, 0, 0.95) 100%);
|
| 42 |
border: 2px solid var(--primary-gold);
|
| 43 |
box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 20px rgba(255, 215, 0, 0.1);
|
|
|
|
|
|
|
|
|
|
| 44 |
}
|
| 45 |
-
|
| 46 |
-
.btn-gold {
|
| 47 |
background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
|
| 48 |
color: #000;
|
| 49 |
font-weight: 700;
|
|
@@ -135,7 +142,7 @@
|
|
| 135 |
</style>
|
| 136 |
</head>
|
| 137 |
<body class="text-white">
|
| 138 |
-
<div class="site-wrapper">
|
| 139 |
<!-- Header -->
|
| 140 |
<header class="fixed top-0 w-full z-50 bg-black/90 backdrop-blur-md border-b border-yellow-600">
|
| 141 |
<nav class="header-container px-4 py-4">
|
|
@@ -146,41 +153,40 @@
|
|
| 146 |
</div>
|
| 147 |
<h1 class="bebas text-3xl gold-text">AZINO 777</h1>
|
| 148 |
</div>
|
| 149 |
-
|
| 150 |
-
|
| 151 |
-
<a href="#games" class="nav-link hover:text-yellow-400">Игры</a>
|
| 152 |
<a href="#bonuses" class="nav-link hover:text-yellow-400">Бонусы</a>
|
| 153 |
<a href="#mobile" class="nav-link hover:text-yellow-400">Мобильная версия</a>
|
| 154 |
<a href="#support" class="nav-link hover:text-yellow-400">Поддержка</a>
|
| 155 |
</div>
|
| 156 |
|
| 157 |
<div class="flex items-center space-x-4">
|
| 158 |
-
|
| 159 |
-
|
| 160 |
-
|
| 161 |
-
|
| 162 |
-
|
| 163 |
</div>
|
| 164 |
</nav>
|
| 165 |
</header>
|
| 166 |
|
| 167 |
<!-- Hero Section -->
|
| 168 |
<section class="pt-24 pb-16 relative overflow-hidden">
|
| 169 |
-
<div class="absolute inset-0 opacity-20">
|
| 170 |
-
<div class="absolute top-10 left-10 w-32 h-32 border-4 border-yellow-500 rounded-full floating"></div>
|
| 171 |
-
<div class="absolute bottom-10 right-10 w-24 h-24 border-4 border-yellow-500 rotate-45 floating" style="animation-delay: 1s;"></div>
|
| 172 |
</div>
|
| 173 |
-
|
| 174 |
<div class="grid md:grid-cols-2 gap-12 items-center">
|
| 175 |
<div>
|
| 176 |
<h2 class="bebas text-5xl md:text-7xl gold-text mb-6">
|
| 177 |
АЗИНО 777
|
| 178 |
</h2>
|
| 179 |
-
<p class="text-xl mb-8 text-gray-300">
|
| 180 |
-
|
| 181 |
</p>
|
| 182 |
-
<div class="flex flex-wrap gap-4 mb-8">
|
| 183 |
-
|
| 184 |
<i data-feather="shield" class="w-5 h-5 text-yellow-400"></i>
|
| 185 |
<span>100% Безопасно</span>
|
| 186 |
</div>
|
|
@@ -193,8 +199,8 @@
|
|
| 193 |
<span>Мобильная версия</span>
|
| 194 |
</div>
|
| 195 |
</div>
|
| 196 |
-
<div class="flex flex-wrap gap-4">
|
| 197 |
-
|
| 198 |
Играть сейчас
|
| 199 |
</button>
|
| 200 |
<button class="border-2 border-yellow-500 px-8 py-3 rounded-full font-bold hover:bg-yellow-500 hover:text-black transition-all">
|
|
|
|
| 23 |
max-width: 1200px;
|
| 24 |
margin: 0 auto;
|
| 25 |
position: relative;
|
| 26 |
+
padding: 0 15px;
|
| 27 |
+
width: 100%;
|
| 28 |
+
box-sizing: border-box;
|
| 29 |
}
|
| 30 |
.header-container {
|
| 31 |
+
max-width: 1200px;
|
| 32 |
margin: 0 auto;
|
| 33 |
+
width: 100%;
|
| 34 |
+
padding: 0 15px;
|
| 35 |
+
box-sizing: border-box;
|
| 36 |
}
|
| 37 |
.bebas {
|
| 38 |
font-family: 'Montserrat', sans-serif;
|
|
|
|
| 42 |
color: var(--primary-gold);
|
| 43 |
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
|
| 44 |
}
|
|
|
|
| 45 |
.card-gradient {
|
| 46 |
background: linear-gradient(135deg, rgba(139, 0, 0, 0.95) 0%, rgba(255, 0, 0, 0.95) 100%);
|
| 47 |
border: 2px solid var(--primary-gold);
|
| 48 |
box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 20px rgba(255, 215, 0, 0.1);
|
| 49 |
+
margin: 0 auto;
|
| 50 |
+
max-width: 100%;
|
| 51 |
+
box-sizing: border-box;
|
| 52 |
}
|
| 53 |
+
.btn-gold {
|
|
|
|
| 54 |
background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
|
| 55 |
color: #000;
|
| 56 |
font-weight: 700;
|
|
|
|
| 142 |
</style>
|
| 143 |
</head>
|
| 144 |
<body class="text-white">
|
| 145 |
+
<div class="site-wrapper w-full">
|
| 146 |
<!-- Header -->
|
| 147 |
<header class="fixed top-0 w-full z-50 bg-black/90 backdrop-blur-md border-b border-yellow-600">
|
| 148 |
<nav class="header-container px-4 py-4">
|
|
|
|
| 153 |
</div>
|
| 154 |
<h1 class="bebas text-3xl gold-text">AZINO 777</h1>
|
| 155 |
</div>
|
| 156 |
+
<div class="hidden lg:flex items-center space-x-8">
|
| 157 |
+
<a href="#games" class="nav-link hover:text-yellow-400">Игры</a>
|
|
|
|
| 158 |
<a href="#bonuses" class="nav-link hover:text-yellow-400">Бонусы</a>
|
| 159 |
<a href="#mobile" class="nav-link hover:text-yellow-400">Мобильная версия</a>
|
| 160 |
<a href="#support" class="nav-link hover:text-yellow-400">Поддержка</a>
|
| 161 |
</div>
|
| 162 |
|
| 163 |
<div class="flex items-center space-x-4">
|
| 164 |
+
<button class="btn-gold whitespace-nowrap">Войти</button>
|
| 165 |
+
<button class="bg-gradient-to-r from-red-600 to-red-800 px-4 md:px-6 py-2 md:py-3 rounded-full font-bold hover:from-red-700 hover:to-red-900 transition-all whitespace-nowrap">
|
| 166 |
+
Регистрация
|
| 167 |
+
</button>
|
| 168 |
+
</div>
|
| 169 |
</div>
|
| 170 |
</nav>
|
| 171 |
</header>
|
| 172 |
|
| 173 |
<!-- Hero Section -->
|
| 174 |
<section class="pt-24 pb-16 relative overflow-hidden">
|
| 175 |
+
<div class="absolute inset-0 opacity-20 overflow-hidden">
|
| 176 |
+
<div class="absolute top-10 left-10 w-32 h-32 border-4 border-yellow-500 rounded-full floating hidden md:block"></div>
|
| 177 |
+
<div class="absolute bottom-10 right-10 w-24 h-24 border-4 border-yellow-500 rotate-45 floating hidden md:block" style="animation-delay: 1s;"></div>
|
| 178 |
</div>
|
| 179 |
+
<div class="site-wrapper px-4 relative z-10">
|
| 180 |
<div class="grid md:grid-cols-2 gap-12 items-center">
|
| 181 |
<div>
|
| 182 |
<h2 class="bebas text-5xl md:text-7xl gold-text mb-6">
|
| 183 |
АЗИНО 777
|
| 184 |
</h2>
|
| 185 |
+
<p class="text-lg md:text-xl mb-8 text-gray-300">
|
| 186 |
+
Официальное казино с бонусами, играми и максимальной безопасностью для вашего удовольствия
|
| 187 |
</p>
|
| 188 |
+
<div class="flex flex-wrap gap-2 md:gap-4 mb-8 justify-center md:justify-start">
|
| 189 |
+
<div class="flex items-center space-x-2">
|
| 190 |
<i data-feather="shield" class="w-5 h-5 text-yellow-400"></i>
|
| 191 |
<span>100% Безопасно</span>
|
| 192 |
</div>
|
|
|
|
| 199 |
<span>Мобильная версия</span>
|
| 200 |
</div>
|
| 201 |
</div>
|
| 202 |
+
<div class="flex flex-wrap gap-2 md:gap-4 justify-center md:justify-start">
|
| 203 |
+
<button class="btn-gold text-lg pulse-gold">
|
| 204 |
Играть сейчас
|
| 205 |
</button>
|
| 206 |
<button class="border-2 border-yellow-500 px-8 py-3 rounded-full font-bold hover:bg-yellow-500 hover:text-black transition-all">
|