at-0m commited on
Commit
55ea79d
·
verified ·
1 Parent(s): 5f6fcaf

Add 2 files

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +486 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Dury
3
- emoji: 📚
4
- colorFrom: gray
5
- colorTo: pink
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: dury
3
+ emoji: 🐳
4
+ colorFrom: blue
5
+ colorTo: blue
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,486 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="ru">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Whiskey Cola - Королева танцпола</title>
7
+ <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap" rel="stylesheet">
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
9
+ <style>
10
+ :root {
11
+ --whiskey: #d4a055;
12
+ --cola: #3a2215;
13
+ --gold: #ffd700;
14
+ --dark: #1a1a1a;
15
+ --light: #f8f8f8;
16
+ }
17
+
18
+ * {
19
+ margin: 0;
20
+ padding: 0;
21
+ box-sizing: border-box;
22
+ }
23
+
24
+ body {
25
+ font-family: 'Montserrat', sans-serif;
26
+ background: var(--dark);
27
+ color: var(--light);
28
+ overflow-x: hidden;
29
+ background-image: radial-gradient(circle at 70% 30%, rgba(212, 160, 85, 0.1) 0%, transparent 40%);
30
+ }
31
+
32
+ .container {
33
+ max-width: 1200px;
34
+ margin: 0 auto;
35
+ padding: 20px;
36
+ }
37
+
38
+ header {
39
+ position: relative;
40
+ height: 100vh;
41
+ display: flex;
42
+ flex-direction: column;
43
+ justify-content: center;
44
+ align-items: center;
45
+ text-align: center;
46
+ background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.9)), url('https://images.unsplash.com/photo-1531384370597-8590413be50a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center/cover;
47
+ clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
48
+ }
49
+
50
+ .logo {
51
+ position: absolute;
52
+ top: 30px;
53
+ left: 30px;
54
+ font-size: 2rem;
55
+ font-weight: 900;
56
+ color: var(--gold);
57
+ text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
58
+ }
59
+
60
+ .main-title {
61
+ font-size: 6vw;
62
+ margin-bottom: 1rem;
63
+ text-transform: uppercase;
64
+ background: linear-gradient(to right, var(--whiskey), var(--gold));
65
+ -webkit-background-clip: text;
66
+ background-clip: text;
67
+ color: transparent;
68
+ animation: glow 2s infinite alternate;
69
+ }
70
+
71
+ .subtitle {
72
+ font-size: 1.5rem;
73
+ margin-bottom: 2rem;
74
+ text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
75
+ }
76
+
77
+ .cta-button {
78
+ padding: 15px 40px;
79
+ background: linear-gradient(45deg, var(--whiskey), var(--cola));
80
+ border: none;
81
+ border-radius: 50px;
82
+ color: white;
83
+ font-size: 1.2rem;
84
+ font-weight: bold;
85
+ cursor: pointer;
86
+ transition: all 0.3s ease;
87
+ box-shadow: 0 0 20px rgba(212, 160, 85, 0.5);
88
+ }
89
+
90
+ .cta-button:hover {
91
+ transform: translateY(-5px);
92
+ box-shadow: 0 0 30px rgba(212, 160, 85, 0.8);
93
+ }
94
+
95
+ .dance-floor {
96
+ position: relative;
97
+ height: 300px;
98
+ margin: 100px 0;
99
+ background: repeating-linear-gradient(
100
+ 45deg,
101
+ var(--dark),
102
+ var(--dark) 20px,
103
+ var(--gold) 20px,
104
+ var(--gold) 40px
105
+ );
106
+ display: flex;
107
+ justify-content: center;
108
+ align-items: center;
109
+ overflow: hidden;
110
+ }
111
+
112
+ .dance-light {
113
+ position: absolute;
114
+ width: 80%;
115
+ height: 80%;
116
+ background: radial-gradient(circle, rgba(255,215,0,0.3) 0%, transparent 70%);
117
+ border-radius: 50%;
118
+ animation: moveLight 6s infinite alternate ease-in-out;
119
+ }
120
+
121
+ .dancer {
122
+ position: absolute;
123
+ width: 50px;
124
+ height: 50px;
125
+ background: var(--whiskey);
126
+ border-radius: 50%;
127
+ animation: dance 2s infinite ease-in-out;
128
+ }
129
+
130
+ .dancer:nth-child(2) {
131
+ background: var(--gold);
132
+ left: 30%;
133
+ top: 40%;
134
+ animation-delay: 0.2s;
135
+ }
136
+
137
+ .dancer:nth-child(3) {
138
+ background: var(--cola);
139
+ right: 25%;
140
+ top: 60%;
141
+ animation-delay: 0.4s;
142
+ }
143
+
144
+ .dancer:nth-child(4) {
145
+ background: white;
146
+ left: 45%;
147
+ top: 20%;
148
+ animation-delay: 0.6s;
149
+ }
150
+
151
+ .cocktails {
152
+ display: grid;
153
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
154
+ gap: 30px;
155
+ margin: 100px 0;
156
+ }
157
+
158
+ .cocktail-card {
159
+ background: rgba(58, 34, 21, 0.7);
160
+ border-radius: 20px;
161
+ overflow: hidden;
162
+ transition: transform 0.3s ease;
163
+ box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
164
+ position: relative;
165
+ }
166
+
167
+ .cocktail-card:hover {
168
+ transform: translateY(-10px);
169
+ }
170
+
171
+ .cocktail-img {
172
+ height: 200px;
173
+ background: var(--whiskey);
174
+ position: relative;
175
+ overflow: hidden;
176
+ }
177
+
178
+ .cocktail-img::before {
179
+ content: '';
180
+ position: absolute;
181
+ top: 0;
182
+ left: 0;
183
+ width: 100%;
184
+ height: 100%;
185
+ background: linear-gradient(transparent 60%, rgba(0,0,0,0.7));
186
+ }
187
+
188
+ .bubble {
189
+ position: absolute;
190
+ background: rgba(255, 255, 255, 0.6);
191
+ border-radius: 50%;
192
+ animation: bubbleRise 4s infinite ease-in;
193
+ }
194
+
195
+ .cocktail-info {
196
+ padding: 20px;
197
+ }
198
+
199
+ .cocktail-name {
200
+ font-size: 1.5rem;
201
+ margin-bottom: 10px;
202
+ color: var(--gold);
203
+ }
204
+
205
+ .cocktail-desc {
206
+ margin-bottom: 15px;
207
+ line-height: 1.5;
208
+ }
209
+
210
+ .cocktail-price {
211
+ font-weight: bold;
212
+ font-size: 1.2rem;
213
+ color: var(--whiskey);
214
+ }
215
+
216
+ .quote-section {
217
+ margin: 100px 0;
218
+ text-align: center;
219
+ font-style: italic;
220
+ font-size: 1.8rem;
221
+ position: relative;
222
+ }
223
+
224
+ .quote-mark {
225
+ font-size: 5rem;
226
+ color: rgba(212, 160, 85, 0.2);
227
+ position: absolute;
228
+ }
229
+
230
+ .quote-left {
231
+ top: -30px;
232
+ left: 10%;
233
+ }
234
+
235
+ .quote-right {
236
+ bottom: -60px;
237
+ right: 10%;
238
+ }
239
+
240
+ .footer {
241
+ background: var(--cola);
242
+ padding: 50px 0;
243
+ text-align: center;
244
+ clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
245
+ }
246
+
247
+ .social-icons {
248
+ display: flex;
249
+ justify-content: center;
250
+ gap: 20px;
251
+ margin: 30px 0;
252
+ }
253
+
254
+ .social-icon {
255
+ width: 50px;
256
+ height: 50px;
257
+ background: rgba(255, 255, 255, 0.1);
258
+ border-radius: 50%;
259
+ display: flex;
260
+ justify-content: center;
261
+ align-items: center;
262
+ font-size: 1.5rem;
263
+ color: var(--gold);
264
+ transition: all 0.3s ease;
265
+ }
266
+
267
+ .social-icon:hover {
268
+ background: var(--gold);
269
+ color: var(--cola);
270
+ transform: translateY(-5px);
271
+ }
272
+
273
+ @keyframes glow {
274
+ from {
275
+ text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
276
+ }
277
+ to {
278
+ text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(212, 160, 85, 0.6);
279
+ }
280
+ }
281
+
282
+ @keyframes bubbleRise {
283
+ 0% {
284
+ transform: translateY(200px) scale(0.5);
285
+ opacity: 0;
286
+ }
287
+ 20% {
288
+ opacity: 0.8;
289
+ }
290
+ 100% {
291
+ transform: translateY(-50px) scale(1.2);
292
+ opacity: 0;
293
+ }
294
+ }
295
+
296
+ @keyframes dance {
297
+ 0%, 100% {
298
+ transform: translateY(0) rotate(0deg);
299
+ }
300
+ 50% {
301
+ transform: translateY(-50px) rotate(10deg);
302
+ }
303
+ }
304
+
305
+ @keyframes moveLight {
306
+ 0% {
307
+ transform: translate(-20%, -20%);
308
+ }
309
+ 50% {
310
+ transform: translate(20%, 20%);
311
+ }
312
+ 100% {
313
+ transform: translate(-10%, 10%);
314
+ }
315
+ }
316
+
317
+ /* 3D Glass Effect for Cocktail Cards */
318
+ .glass-effect {
319
+ position: absolute;
320
+ top: 0;
321
+ left: 0;
322
+ width: 100%;
323
+ height: 100%;
324
+ background: linear-gradient(
325
+ 135deg,
326
+ rgba(255, 255, 255, 0.1) 0%,
327
+ rgba(255, 255, 255, 0) 60%
328
+ );
329
+ pointer-events: none;
330
+ }
331
+
332
+ /* Responsive adjustments */
333
+ @media (max-width: 768px) {
334
+ .main-title {
335
+ font-size: 3.5rem;
336
+ }
337
+
338
+ .dance-floor {
339
+ height: 200px;
340
+ }
341
+
342
+ .quote-section {
343
+ font-size: 1.3rem;
344
+ }
345
+ }
346
+ </style>
347
+ </head>
348
+ <body>
349
+ <header>
350
+ <div class="logo">WC <i class="fas fa-crown"></i></div>
351
+ <div class="container">
352
+ <h1 class="main-title">Whiskey Cola</h1>
353
+ <p class="subtitle">Королева танцпола и король вечеринок</p>
354
+ <button class="cta-button">Заказать сейчас</button>
355
+ </div>
356
+ </header>
357
+
358
+ <div class="container">
359
+ <section class="dance-floor">
360
+ <div class="dance-light"></div>
361
+ <div class="dancer"></div>
362
+ <div class="dancer"></div>
363
+ <div class="dancer"></div>
364
+ <div class="dancer"></div>
365
+ <h2 style="position: relative; z-index: 2; color: white; text-shadow: 0 0 10px black; font-size: 2.5rem;">Танцуйте с нами!</h2>
366
+ </section>
367
+
368
+ <section class="cocktails">
369
+ <div class="cocktail-card">
370
+ <div class="cocktail-img">
371
+ <div class="glass-effect"></div>
372
+ </div>
373
+ <div class="cocktail-info">
374
+ <h3 class="cocktail-name">Классическая Королева</h3>
375
+ <p class="cocktail-desc">Настоящий виски с колой в идеальной пропорции, дополненный долькой лайма и льдом премиального качества.</p>
376
+ <p class="cocktail-price">450 ₽</p>
377
+ </div>
378
+ </div>
379
+
380
+ <div class="cocktail-card">
381
+ <div class="cocktail-img" style="background: var(--cola);">
382
+ <div class="glass-effect"></div>
383
+ </div>
384
+ <div class="cocktail-info">
385
+ <h3 class="cocktail-name">Танцующий Дракон</h3>
386
+ <p class="cocktail-desc">Ямайский ром в сочетании с виски, колой и тайными специями, которые разжигают огонь вечеринки.</p>
387
+ <p class="cocktail-price">550 ₽</p>
388
+ </div>
389
+ </div>
390
+
391
+ <div class="cocktail-card">
392
+ <div class="cocktail-img" style="background: var(--gold);">
393
+ <div class="glass-effect"></div>
394
+ </div>
395
+ <div class="cocktail-info">
396
+ <h3 class="cocktail-name">Бурбон Глоу</h3>
397
+ <p class="cocktail-desc">Премиальный бурбон с колой, медовым сиропом и карамельными нотками для истинных ценителей.</p>
398
+ <p class="cocktail-price">600 ₽</p>
399
+ </div>
400
+ </div>
401
+ </section>
402
+
403
+ <section class="quote-section">
404
+ <span class="quote-mark quote-left">"</span>
405
+ <p>Виски-кола - это не просто напиток, это состояние души. Она превращает обычный вечер в легенду танцпола.</p>
406
+ <span class="quote-mark quote-right">"</span>
407
+ </section>
408
+ </div>
409
+
410
+ <footer class="footer">
411
+ <div class="container">
412
+ <h3 style="color: var(--gold); font-size: 2rem;">Присоединяйтесь к нашей вечеринке</h3>
413
+ <div class="social-icons">
414
+ <a href="#" class="social-icon"><i class="fab fa-instagram"></i></a>
415
+ <a href="#" class="social-icon"><i class="fab fa-facebook-f"></i></a>
416
+ <a href="#" class="social-icon"><i class="fab fa-tiktok"></i></a>
417
+ <a href="#" class="social-icon"><i class="fab fa-telegram-plane"></i></a>
418
+ </div>
419
+ <p>© 2023 Whiskey Cola | Все права защищены</p>
420
+ </div>
421
+ </footer>
422
+
423
+ <script>
424
+ // Create bubbles in cocktail images
425
+ document.addEventListener('DOMContentLoaded', function() {
426
+ const cocktailImages = document.querySelectorAll('.cocktail-img');
427
+
428
+ cocktailImages.forEach(img => {
429
+ // Create 15 bubbles per image
430
+ for (let i = 0; i < 15; i++) {
431
+ const bubble = document.createElement('div');
432
+ bubble.classList.add('bubble');
433
+
434
+ // Random properties for bubbles
435
+ const size = Math.random() * 20 + 5;
436
+ const posX = Math.random() * 80 + 10;
437
+ const delay = Math.random() * 5;
438
+ const duration = Math.random() * 3 + 3;
439
+
440
+ bubble.style.width = `${size}px`;
441
+ bubble.style.height = `${size}px`;
442
+ bubble.style.left = `${posX}%`;
443
+ bubble.style.animationDelay = `${delay}s`;
444
+ bubble.style.animationDuration = `${duration}s`;
445
+
446
+ img.appendChild(bubble);
447
+ }
448
+ });
449
+
450
+ // Button animation
451
+ const ctaButton = document.querySelector('.cta-button');
452
+ ctaButton.addEventListener('click', function() {
453
+ this.classList.add('active');
454
+ setTimeout(() => {
455
+ this.classList.remove('active');
456
+ }, 300);
457
+
458
+ // Show order modal (could be expanded)
459
+ alert('Вы выбрали Королеву танцпола! Будем рады видеть вас в нашем баре!');
460
+ });
461
+
462
+ // Interactive dancers
463
+ const dancers = document.querySelectorAll('.dancer');
464
+ dancers.forEach(dancer => {
465
+ dancer.addEventListener('mouseenter', function() {
466
+ this.style.transform = 'scale(1.2)';
467
+ this.style.boxShadow = '0 0 20px gold';
468
+ });
469
+
470
+ dancer.addEventListener('mouseleave', function() {
471
+ this.style.transform = '';
472
+ this.style.boxShadow = '';
473
+ });
474
+ });
475
+
476
+ // Background animation
477
+ document.body.addEventListener('mousemove', function(e) {
478
+ const x = e.clientX / window.innerWidth;
479
+ const y = e.clientY / window.innerHeight;
480
+
481
+ document.body.style.backgroundPosition = `${x * 100}% ${y * 100}%`;
482
+ });
483
+ });
484
+ </script>
485
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <a href="https://enzostvs-deepsite.hf.space" style="color: #fff;" target="_blank" >DeepSite</a> <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;"></p></body>
486
+ </html>