-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFiles.html
More file actions
68 lines (63 loc) · 2.01 KB
/
Copy pathFiles.html
File metadata and controls
68 lines (63 loc) · 2.01 KB
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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<title> Download EPK </title>
<meta name="description" content="Download the EPK installer and package manager files."/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<style>
.navbar{
background-color:rgb(0, 0, 0);
color:aliceblue;
text-align:center;
padding:2px;
position: sticky;
top: 0px;
border-radius: 10px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.644);
}
.body{
background-color:aqua;
}
.div{
text-align: center;
background-color:rgb(212, 212, 212);
border-radius: 50px;
padding:0% 20px 10px 20px;
transition: background-color 0.5s ease-in-out;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.644);
}
.button{
color: rgb(0, 60, 9);
background-color: rgb(0, 255, 94);
border-radius: 10px;
padding: 10px;
border: 2px solid rgb(20, 20, 20);
cursor:pointer;
font: 159% Georgia, 'Times New Roman', Times, serif;
box-shadow: 0 0 15px rgba(0, 194, 42, 0.612);
}
.button a{
text-decoration: none;
color:rgb(255, 255, 255);
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.a{
text-decoration: none;
color:rgba(255, 255, 255, 0.087);
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
</style>
<body class="body">
<nav class="navbar">
<h1>Download EPK</h1>
</nav>
<div class="div">
<p style="font: 100% Georgia, 'Times New Roman', Times, serif; color:rgb(255, 255, 255);">File site test</p>
<button class="button"><a href="EPK_installer.py" download="">⤓ Download</a>
</button>
<p>Universal .py file</p>
<p style="color:rgba(240, 248, 255, 0.055)"><a href="EPK.zip" download="" class="a">skip installing</a></p>
</div>
</body>
</html>