-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path422.html
79 lines (78 loc) · 2.08 KB
/
422.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
<!DOCTYPE html>
<html>
<head>
<title>The change you wanted was rejected (422)</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<style>
.error-content {
font-family: 'Open Sans', sans-serif;
position: absolute;
margin: auto;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: inline-flex;
vertical-align: middle;
width: 600px;
height: 250px;
}
.error-code {
background-color: #d6d6d6;
width: 180px;
height: 120px;
color: white;
font-size: 45px;
}
.error-message {
padding-left: 25px;
line-height: 28px;
}
h3 {
padding: 0px 14px;
}
h1 {
margin-top: 25px;
margin-bottom: 0;
font-size: 28px;
}
p {
margin-top: 5px;
color: #8c8c8c;
}
a {
color: #8c8c8c;
}
a:hover {
color: #424242;
}
.error-code {
background:
linear-gradient(#002F6C 0%, #E57200 90%),
linear-gradient(to right, #002F6C 0%, #E57200 90%),
url('https://upload.wikimedia.org/wikipedia/en/thumb/2/2d/UVA_Rotunda_Logo.svg/1005px-UVA_Rotunda_Logo.svg.png') 30px,
url('https://upload.wikimedia.org/wikipedia/en/thumb/2/2d/UVA_Rotunda_Logo.svg/1005px-UVA_Rotunda_Logo.svg.png') 20px;
background-blend-mode: screen, difference, lighten;
border-radius: 30px;
background-repeat: no-repeat;
background-size: contain;
background-attachment: initial;
background-position: center;
}
</style>
</head>
<body>
<!-- This file lives in public/422.html -->
<div class="error-content">
<div class="error-code">
<h3>422</h3>
</div>
<div class="error-message">
<h1>Oops, your request could not be processed</h1>
<p>Try going back to your <a href="/dashboard">dashboard</a> to pick back up where you left off or
<a href="mailto:[email protected]">contact us</a> for assistance</p>
</div>
</div>
</body>
</html>