-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
176 lines (152 loc) · 5.09 KB
/
index.html
File metadata and controls
176 lines (152 loc) · 5.09 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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="refresh" content="2;url=https://katorly.com">
<title>Redirecting - Katorly Lab</title>
<meta name="description" content="Redirecting to Katorly Lab official website. lab.katorly.com hosts project pages only; katorly.com is our main website.">
<meta name="keywords" content="Katorly Lab, Katorly, katorlylab, katorlys, katorly, redirect">
<link rel="canonical" href="https://katorly.com">
<meta name="robots" content="noindex, follow">
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon" />
<script>
setTimeout(function() {
window.location.href = 'https://katorly.com';
}, 2000);
</script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Lexend', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Open Sans', sans-serif;
}
body {
background-image: url('images/background.png');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
color: #333333;
}
.container {
max-width: 37.5rem;
width: 90%;
padding: 2.5rem;
background-color: #ffffff50;
border-radius: 1.25rem;
box-shadow: 0 0.625rem 1.875rem #0000001a;
text-align: center;
backdrop-filter: blur(1rem);
border: 0.0625rem solid #ffffff2e;
opacity: 0;
transform: translateY(1.25rem);
animation: fadeIn 0.8s ease forwards 0.3s;
}
@keyframes fadeIn {
to {
opacity: 1;
transform: translateY(0);
}
}
.badge {
display: inline-block;
color: #1495FF;
padding: 0.375rem 0.75rem;
border-radius: 1.25rem;
font-size: 1rem;
font-weight: 600;
margin-bottom: 1.25rem;
border: 0.125rem solid #1495FF;
}
h1 {
font-family: 'Outfit', sans-serif;
font-size: 3rem;
margin-bottom: 1.25rem;
line-height: 1.2;
}
h1 a {
text-decoration: none;
color: inherit;
}
h1 a:hover,
h1 a:focus,
h1 a:visited {
text-decoration: none;
color: inherit;
}
p {
font-size: 1.2rem;
color: #444444;
margin-bottom: 2.5rem;
line-height: 1.6;
}
.btn-circle {
display: inline-flex;
justify-content: center;
align-items: center;
width: 3.75rem;
height: 3.75rem;
background-color: #1495FF;
color: white;
border-radius: 50%;
border: none;
font-size: 1.5rem;
cursor: pointer;
transition: transform 0.3s, box-shadow 0.3s;
box-shadow: 0 0.25rem 0.9375rem #1495ff66;
}
.btn-circle:hover,
.btn-circle:focus,
.btn-circle:focus-visible {
transform: translateY(-0.1875rem);
box-shadow: 0 0.375rem 1.25rem #1495ff99;
outline: none;
}
.btn-circle:active {
transform: translateY(0);
}
@media (max-width: 768px) {
h1 {
font-size: 2.5rem;
}
p {
font-size: 1rem;
}
.container {
padding: 1.875rem;
}
}
@media (max-width: 480px) {
h1 {
font-size: 2rem;
}
.btn-circle {
width: 3.125rem;
height: 3.125rem;
}
}
</style>
</head>
<body>
<div class="container">
<div class="badge">Katorly Lab</div>
<h1>Redirecting to</br><a href="https://katorly.com">katorly.com</a></h1>
<p>You will be redirected automatically.</br>If not, click the button below.</p>
<a href="https://katorly.com" class="btn-circle" aria-label="Go to Katorly Lab">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round">
<line x1="5" y1="12" x2="19" y2="12"></line>
<polyline points="12 5 19 12 12 19"></polyline>
</svg>
</a>
</div>
</body>
</html>