-
Notifications
You must be signed in to change notification settings - Fork 0
/
discord.html
92 lines (89 loc) · 2.05 KB
/
discord.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
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ReinServer | Store</title>
<link rel="icon" href="https://reinserver.com/reinserver.ico" type="image/x-icon">
<style>
body {
font-family: Helvetica, sans-serif;
text-align: center;
background-color: black;
color: white;
line-height: 1.2;
}
.big-text {
font-size: 100px;
font-weight: bold;
margin-top: 50px;
}
@media (max-width: 600px) {
.big-text {
font-size: 50px; /* Reduced font size for mobile */
}
.desktop-version {
display: none;
}
.mobile-version {
display: block;
}
}
.med-text {
font-size: 30px;
font-weight: bold;
margin-top: 50px;
}
.sale-text {
font-size: 30px;
font-weight: bold;
margin-top: 50px;
color: rgb(0, 255, 0);
}
.red-text {
color: red;
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: black;
color: white;
border: 2px solid white;
cursor: pointer;
text-decoration: none;
margin-top: 10px;
}
.purchasebutton {
display: inline-block;
padding: 10px 20px;
background-color: black;
color: white;
border: 2px solid white;
cursor: pointer;
text-decoration: none;
margin-top: 10px;
width: 250px;
}
.text {
display: inline-block; /* Display text inline */
margin-right: 10px; /* Add margin between text and button */
}
.green-text {
display: inline-block; /* Display text inline */
margin-right: 10px; /* Add margin between text and button */
color: rgb(0,255,0);
}
</style>
</head>
<body>
<div class="big-text">Redirecting...</div>
<p><b>Redirecting you to the ReinServer Discord</b></p>
<br>
<button class="button" onclick="goback()">go back</button>
<script>
window.location.href = 'https://discord.gg/pSZrne8szT';
// Trigger the resize event on page load to ensure correct initial state
window.dispatchEvent(new Event('resize'));
</script>
</body>
</html>