Hrodw0lf commited on
Commit
1760ece
·
verified ·
1 Parent(s): 30e17a3

Upload index.html

Browse files
Files changed (1) hide show
  1. index.html +41 -15
index.html CHANGED
@@ -5,10 +5,18 @@
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
  <title>ReferatAI — Telegram-бот для генерации рефератов</title>
7
  <style>
 
 
 
 
 
 
 
 
8
  body {
9
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
10
- background: linear-gradient(135deg, #eef2ff, #faf5ff);
11
- color: #1e1e2f;
12
  margin: 0;
13
  padding: 0;
14
  display: flex;
@@ -17,39 +25,48 @@
17
  justify-content: center;
18
  min-height: 100vh;
19
  text-align: center;
 
20
  }
21
 
22
  img {
23
  width: 180px;
24
  height: 180px;
25
- border-radius: 20px;
26
- box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
27
- margin-bottom: 20px;
 
 
 
 
 
 
28
  }
29
 
30
  h1 {
31
- font-size: 2.2rem;
32
  margin-bottom: 10px;
 
33
  }
34
 
35
  p {
36
  font-size: 1.1rem;
37
- max-width: 500px;
38
- margin: 0 auto 30px;
39
- color: #444;
 
40
  }
41
 
42
  a.button {
43
  display: inline-block;
44
- padding: 14px 28px;
45
- background-color: #229ED9;
46
  color: white;
47
  font-weight: 600;
48
  font-size: 1.1rem;
49
  border-radius: 50px;
50
  text-decoration: none;
51
- transition: background 0.25s, transform 0.15s;
52
- box-shadow: 0 4px 14px rgba(34, 158, 217, 0.3);
53
  }
54
 
55
  a.button:hover {
@@ -58,9 +75,18 @@
58
  }
59
 
60
  footer {
61
- margin-top: 50px;
62
  font-size: 0.9rem;
63
- color: #777;
 
 
 
 
 
 
 
 
 
64
  }
65
  </style>
66
  </head>
 
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
  <title>ReferatAI — Telegram-бот для генерации рефератов</title>
7
  <style>
8
+ :root {
9
+ --bg-dark: #0b0c10;
10
+ --bg-gradient: linear-gradient(160deg, #111217, #1a1c23);
11
+ --text-color: #e5e7eb;
12
+ --text-muted: #9ca3af;
13
+ --accent: #229ED9;
14
+ }
15
+
16
  body {
17
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
18
+ background: var(--bg-gradient);
19
+ color: var(--text-color);
20
  margin: 0;
21
  padding: 0;
22
  display: flex;
 
25
  justify-content: center;
26
  min-height: 100vh;
27
  text-align: center;
28
+ transition: background 0.5s ease;
29
  }
30
 
31
  img {
32
  width: 180px;
33
  height: 180px;
34
+ border-radius: 24px;
35
+ box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
36
+ margin-bottom: 25px;
37
+ transition: transform 0.3s ease, box-shadow 0.3s ease;
38
+ }
39
+
40
+ img:hover {
41
+ transform: scale(1.05);
42
+ box-shadow: 0 12px 40px rgba(34, 158, 217, 0.4);
43
  }
44
 
45
  h1 {
46
+ font-size: 2.4rem;
47
  margin-bottom: 10px;
48
+ letter-spacing: 0.5px;
49
  }
50
 
51
  p {
52
  font-size: 1.1rem;
53
+ max-width: 520px;
54
+ margin: 0 auto 32px;
55
+ color: var(--text-muted);
56
+ line-height: 1.6;
57
  }
58
 
59
  a.button {
60
  display: inline-block;
61
+ padding: 14px 32px;
62
+ background-color: var(--accent);
63
  color: white;
64
  font-weight: 600;
65
  font-size: 1.1rem;
66
  border-radius: 50px;
67
  text-decoration: none;
68
+ transition: background 0.3s, transform 0.15s;
69
+ box-shadow: 0 4px 20px rgba(34, 158, 217, 0.4);
70
  }
71
 
72
  a.button:hover {
 
75
  }
76
 
77
  footer {
78
+ margin-top: 60px;
79
  font-size: 0.9rem;
80
+ color: var(--text-muted);
81
+ }
82
+
83
+ @keyframes fadeIn {
84
+ from { opacity: 0; transform: translateY(10px); }
85
+ to { opacity: 1; transform: translateY(0); }
86
+ }
87
+
88
+ body > * {
89
+ animation: fadeIn 0.7s ease forwards;
90
  }
91
  </style>
92
  </head>