madstuntman11 commited on
Commit
f83ef7c
·
verified ·
1 Parent(s): a773f5e

Отлично! Сделай теперь в стиле High Tech. Чтобы прям атпад и вау был! - Follow Up Deployment

Browse files
Files changed (1) hide show
  1. index.html +69 -12
index.html CHANGED
@@ -11,26 +11,36 @@
11
 
12
  body {
13
  font-family: 'Montserrat', sans-serif;
14
- background-color: #121212;
15
- color: #f5f5f5;
 
 
 
16
  }
17
 
18
  .page {
19
- background: linear-gradient(135deg, #1a1a1a 0%, #121212 100%);
20
- border: 1px solid rgba(212, 175, 55, 0.3);
21
- box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
 
 
 
 
22
  }
23
 
24
  .gold-text {
25
- color: #d4af37;
 
26
  }
27
 
28
  .gold-border {
29
- border-color: #d4af37;
 
30
  }
31
 
32
  .gold-bg {
33
- background-color: #d4af37;
 
34
  }
35
 
36
  h1, h2, h3 {
@@ -38,16 +48,61 @@
38
  }
39
 
40
  .book-icon {
41
- text-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  }
43
 
44
  .feature-card {
45
  transition: all 0.3s ease;
 
 
46
  }
47
 
48
  .feature-card:hover {
49
  transform: translateY(-5px);
50
- box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
  }
52
  </style>
53
  </head>
@@ -81,8 +136,10 @@
81
  </span>
82
  </div>
83
  </div>
84
- <div class="overflow-hidden h-2 mb-4 text-xs flex rounded bg-gray-800">
85
- <div style="width:100%" class="shadow-none flex flex-col text-center whitespace-nowrap text-white justify-center gold-bg"></div>
 
 
86
  </div>
87
  </div>
88
  </div>
 
11
 
12
  body {
13
  font-family: 'Montserrat', sans-serif;
14
+ background-color: #0a0a0a;
15
+ color: #00ff9d;
16
+ background-image:
17
+ radial-gradient(circle at 25% 25%, rgba(0, 255, 157, 0.05) 0%, transparent 50%),
18
+ radial-gradient(circle at 75% 75%, rgba(0, 195, 255, 0.05) 0%, transparent 50%);
19
  }
20
 
21
  .page {
22
+ background: rgba(10, 10, 20, 0.8);
23
+ border: 1px solid rgba(0, 255, 157, 0.3);
24
+ box-shadow:
25
+ 0 0 15px rgba(0, 255, 157, 0.3),
26
+ 0 0 30px rgba(0, 0, 0, 0.7);
27
+ backdrop-filter: blur(5px);
28
+ border-radius: 5px;
29
  }
30
 
31
  .gold-text {
32
+ color: #00ff9d;
33
+ text-shadow: 0 0 5px rgba(0, 255, 157, 0.5);
34
  }
35
 
36
  .gold-border {
37
+ border-color: #00ff9d;
38
+ box-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
39
  }
40
 
41
  .gold-bg {
42
+ background-color: #00ff9d;
43
+ color: #0a0a0a;
44
  }
45
 
46
  h1, h2, h3 {
 
48
  }
49
 
50
  .book-icon {
51
+ text-shadow:
52
+ 0 0 10px rgba(0, 255, 157, 0.7),
53
+ 0 0 20px rgba(0, 255, 157, 0.3);
54
+ animation: pulse 2s infinite alternate;
55
+ }
56
+
57
+ @keyframes pulse {
58
+ from {
59
+ text-shadow:
60
+ 0 0 10px rgba(0, 255, 157, 0.7),
61
+ 0 0 20px rgba(0, 255, 157, 0.3);
62
+ }
63
+ to {
64
+ text-shadow:
65
+ 0 0 15px rgba(0, 255, 157, 0.9),
66
+ 0 0 30px rgba(0, 255, 157, 0.5),
67
+ 0 0 45px rgba(0, 255, 157, 0.2);
68
+ }
69
  }
70
 
71
  .feature-card {
72
  transition: all 0.3s ease;
73
+ position: relative;
74
+ overflow: hidden;
75
  }
76
 
77
  .feature-card:hover {
78
  transform: translateY(-5px);
79
+ box-shadow:
80
+ 0 5px 15px rgba(0, 255, 157, 0.3),
81
+ 0 0 30px rgba(0, 195, 255, 0.2);
82
+ }
83
+
84
+ .feature-card::before {
85
+ content: '';
86
+ position: absolute;
87
+ top: -50%;
88
+ left: -50%;
89
+ width: 200%;
90
+ height: 200%;
91
+ background: linear-gradient(
92
+ to bottom right,
93
+ rgba(0, 255, 157, 0) 0%,
94
+ rgba(0, 255, 157, 0.1) 50%,
95
+ rgba(0, 255, 157, 0) 100%
96
+ );
97
+ transform: rotate(30deg);
98
+ transition: all 0.6s ease;
99
+ opacity: 0;
100
+ }
101
+
102
+ .feature-card:hover::before {
103
+ opacity: 1;
104
+ left: 100%;
105
+ top: 100%;
106
  }
107
  </style>
108
  </head>
 
136
  </span>
137
  </div>
138
  </div>
139
+ <div class="overflow-hidden h-2 mb-4 text-xs flex rounded bg-gray-900 border border-gray-700">
140
+ <div style="width:100%" class="shadow-none flex flex-col text-center whitespace-nowrap text-white justify-center gold-bg relative">
141
+ <div class="absolute inset-0 bg-gradient-to-r from-transparent via-white to-transparent opacity-20 animate-pulse"></div>
142
+ </div>
143
  </div>
144
  </div>
145
  </div>