-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinvite.html
87 lines (81 loc) · 2.38 KB
/
invite.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
---
title: Invite Aphelia
permalink: /invite/
---
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="refresh" content="0;url='https://discord.com/api/oauth2/authorize?client_id=687749721380618318&permissions=2146958815&scope=bot'" />
<link rel="canonical" href="https://discord.com/api/oauth2/authorize?client_id=687749721380618318&permissions=2146958815&scope=bot"/>
<style>
/* Set height to 100% for body and html to enable the background image to cover the whole page: */
body, html {
overflow: hidden;
margin: 0;
height: 100%
}
.bgimg {
/* Background image */
background-image: url('discord.jpg');
/* Full-screen */
height: 100%;
/* Center the background image */
background-position: center;
/* Scale and zoom in the image */
background-size: cover;
/* Add position: relative to enable absolutely positioned elements inside the image (place text) */
position: relative;
/* Add a white text color to all elements inside the .bgimg container */
color: white;
/* Add a font */
font-family: "Courier New", Courier, monospace;
/* Set the font-size to 25 pixels */
font-size: 25px;
}
/* Position text in the top-left corner */
.topleft {
position: absolute;
top: 0;
left: 16px;
}
/* Position text in the bottom-left corner */
.bottomleft {
position: absolute;
bottom: 0;
left: 16px;
}
/* Position text in the middle */
.middle {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
/* Style the <hr> element */
hr {
margin: auto;
width: 40%;
}
a {
color: #5566ff;
}
a:hover {
color: #5555ff;
}
</style>
</head>
<body>
<div class="bgimg">
<div class="topleft">
<a href="https://github.com/Aphelia">Project Aphelia</a>
</div>
<div class="middle">
<h1>Invite</h1>
<hr>
<p>Your browser should be redirecting you shortly.</p>
</div>
</div>
</body>
</html>