-
Notifications
You must be signed in to change notification settings - Fork 55
/
app.py
67 lines (59 loc) · 1.78 KB
/
app.py
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
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return """
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>pyTele-Loader Repository</title>
<style>
body {
background: linear-gradient(to left, #360033, #0b8793);
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
padding: 0 20px;
}
.card {
background: linear-gradient(to right, #1A2980 0%, #26D0CE 51%, #1A2980 100%);
padding: 15px;
margin-top: 30px;
border-radius: 5px;
text-align: center;
transition: transform 0.3s;
text-decoration: none;
color: white;
display: block;
max-height: 4em;
overflow: hidden;
border: 2px solid #CCCCCC;
font-size: 12px;
white-space: nowrap;
box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);
}
.card:hover {
transform: scale(1.1);
max-height: none;
}
</style>
</head>
<body>
<div class="container">
<a href="https://github.com/SilentDemonSD/pyTele-Loader" class="card">
<p>
▀█▀▒██▀░█▒░▒██▀░▒░░█▒░░▄▀▄▒▄▀▄░█▀▄▒██▀▒█▀▄<br>
▒█▒░█▄▄▒█▄▄░█▄▄░▀▀▒█▄▄░▀▄▀░█▀█▒█▄▀░█▄▄░█▀▄<br>
<b>v2.0.0</b>
</p>
</a>
</div>
</body>
</html>
"""