-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathredirect.html
72 lines (72 loc) · 1.69 KB
/
redirect.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>You have been redirected</title>
<link rel="icon" type="image/x-icon" href="images/icon.png" />
</head>
<body>
<style type="text/css">
body {
background-color: #f0f0f2;
margin: 0;
padding: 0;
font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI",
"Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
div {
width: 600px;
margin: 5em auto;
padding: 2em;
background-color: #fdfdff;
border-radius: 0.5em;
box-shadow: 2px 3px 7px 2px rgba(0, 0, 0, 0.02);
display: flex;
flex-direction: column;
align-items: center;
}
h1 {
color: #214ba5;
font-family: Arial,sans-serif;
}
p {
width: 80%;
text-align: center;
font-size: 1.4rem;
}
button {
border: 2px solid #0767f4;
color: #069aed;
padding: 10px;
margin: 5px;
border-radius: 6px;
width: 50%;
letter-spacing: 1px;
}
button:hover {
background-color: #ffffff;
color: #2565e4;
cursor: pointer;
transition-duration: 300ms;
}
a {
text-decoration: none;
color: #0767f4;
}
@media (max-width: 700px) {
div {
margin: 0 auto;
width: auto;
}
}
</style>
<div>
<h1>You have been redirected!</h1>
<p>
Time to stay Focussed
<br /><br />
</p>
</div>
</body>
</html>