-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbenkormos.html
More file actions
153 lines (134 loc) · 4.56 KB
/
Copy pathbenkormos.html
File metadata and controls
153 lines (134 loc) · 4.56 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Redirecting...</title>
<meta http-equiv="refresh" content="0;url=/ben.html">
<!-- FontAwesome Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Archivo+Black&family=IBM+Plex+Mono:wght@400;500;600;700&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
:root {
--bg-main: #15130d;
--bg-surface-elevated: #232016;
--border-main: rgba(245, 239, 224, 0.08);
--border-active: rgba(245, 239, 224, 0.24);
--accent-stamp: #6fa8ff;
--accent-alert: #ff7a6c;
--text-pure: #f5efdf;
--text-muted: #746c56;
--font-display: 'Archivo Black', sans-serif;
--font-mono: 'IBM Plex Mono', monospace;
}
* { box-sizing: border-box; }
body {
background-color: var(--bg-main);
background-image:
repeating-linear-gradient(rgba(245, 239, 224, 0.035) 0px, rgba(245, 239, 224, 0.035) 1px, transparent 1px, transparent 32px),
radial-gradient(rgba(245, 239, 224, 0.05) 0.6px, transparent 0.6px);
background-size: auto, 6px 6px;
color: var(--text-pure);
font-family: var(--font-mono);
margin: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
position: relative;
}
/* Perforated tear-strip along the very top of the page */
body::before {
content: '';
position: fixed;
top: 0; left: 0;
width: 100%;
height: 9px;
background-color: var(--text-pure);
background-image: radial-gradient(circle, var(--bg-main) 3px, transparent 3.2px);
background-size: 18px 9px;
background-position: 9px center;
z-index: 1001;
}
.redirect-box {
position: relative;
text-align: center;
background: var(--bg-surface-elevated);
padding: 40px 44px;
border-radius: 2px;
border: 1px dashed var(--border-active);
box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.4);
}
/* Registration corner marks, like a technical drawing */
.redirect-box::before,
.redirect-box::after {
content: '';
position: absolute;
width: 10px;
height: 10px;
pointer-events: none;
}
.redirect-box::before {
top: -1px;
left: -1px;
border-top: 2px solid var(--accent-stamp);
border-left: 2px solid var(--accent-stamp);
}
.redirect-box::after {
bottom: -1px;
right: -1px;
border-bottom: 2px solid var(--accent-alert);
border-right: 2px solid var(--accent-alert);
}
.spinner {
font-size: 2.2rem;
color: var(--accent-stamp);
margin-bottom: 18px;
animation: spin 1s linear infinite;
}
h2 {
margin: 0 0 10px 0;
font-family: var(--font-display);
font-size: 1rem;
font-weight: 400;
text-transform: uppercase;
letter-spacing: 1.5px;
color: var(--text-pure);
}
p {
color: var(--text-muted);
font-size: 0.75rem;
letter-spacing: 0.3px;
margin: 0;
}
a {
color: var(--accent-stamp);
text-decoration: none;
font-weight: 700;
}
a:hover {
text-decoration: underline;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
.spinner { animation-duration: 0.01ms; }
}
</style>
</head>
<body>
<div class="redirect-box">
<i class="fas fa-circle-notch spinner"></i>
<h2>Connecting</h2>
<p>Getting Reconnected if not, <a href="/ben.html">click here !!</a>.</p>
</div>
<script>
setTimeout(function() {
window.location.href = "/ben.html";
}, 50);
</script>
</body>
</html>