-
Notifications
You must be signed in to change notification settings - Fork 3
/
popup.html
89 lines (82 loc) · 2.12 KB
/
popup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Android for Web Telegram</title>
<style>
body {
font-family: 'Roboto', sans-serif;
background-color: #f9fafc;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 360px;
min-height: 100vh;
margin: 0 auto;
color: #333;
box-sizing: border-box;
}
h1 {
font-size: 20px;
margin: 5px 0;
text-align: center;
color: #4a4a4a;
}
p {
text-align: center;
color: #666;
margin: 5px 0;
font-size: 16px;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 10px 10px;
box-sizing: border-box;
width: 100%;
height: auto;
position: relative;
background-color: #ffffff;
border-radius: 0;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.footer {
margin-top: 10px;
font-size: 14px;
color: #666;
display: flex;
align-items: center;
justify-content: center;
}
.footer a {
color: #666;
text-decoration: none;
display: flex;
align-items: center;
}
.footer a:hover {
text-decoration: underline;
}
.footer img {
margin-right: 5px;
}
</style>
</head>
<body>
<div class="container">
<h1>Android for Web Telegram</h1>
<p>Данное расширение помогает запускать различные mini-apps с Web версии Telegram!</p>
<p>Оно позволяет запускать множество популярных приложений, но не является рабочим во всех случаев.</p>
<div class="footer">
<a href="https://t.me/x_0xJohn" target="_blank">
<img src="telegram_icon.png" alt="Telegram" width="20" height="20"> by 0xJohn
</a>
</div>
</div>
</body>
</html>