-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path403.html
81 lines (80 loc) · 2.26 KB
/
403.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
<html><head></head><body><div class="card">
<div class="info__padding">
<h3>Error 403</h3>
<p>System refused to respond to this request. This may be due to a lack of permission to this page.</p>
</div>
<div class="button__group">
<button onclick="window.location.href='https://lostinfinite.github.io'">Ok</button>
</div>
</div><style> @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');
*, *:after, *:before {
box-sizing: border-box;
padding: 0;
margin: 0;
font-family: 'Inter', sans-serif;
}
body {
padding: 40px;
max-width: 460px;
margin: auto;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-color: rgb(236,236,236);
background-color: #999999;
}
.card {
border-radius: 0.75rem;
background-color: #fff;
overflow: hidden;
}
.info__padding {
padding: 40px 40px 30px 40px;
}
h3 {
font-size: 19px;
margin-bottom: 12px;
font-weight: 600;
}
p {
font-size: 16px;
font-weight: 400;
}
h3, p {
color: #0B1A28;
text-align: center;
}
.button__group button {
color: #007AFF;
background-color: #fff;
font-size: 16px;
font-weight: 500;
outline: none;
border: none;
border-top: 1px solid rgb(220,224,226);
border-left: 1px solid rgb(220,224,226);
padding: 18px 10px;
cursor: pointer;
float: left;
width: 100%;
}
.button__group:after {
content: "";
clear: both;
display: table;
}
.button__group button:not(:last-child) {
border-left: none;
}
.button__group button:hover {
background-color: rgb(250,250,250);
}
.button__group button:active {
background-color: rgb(245,245,245);
}
@media only screen and (max-width: 600px) {
body {
padding: 30px;
}
}</style></body></html>