forked from pratham0203/lokeshdidwania
-
Notifications
You must be signed in to change notification settings - Fork 0
/
500.shtml
141 lines (138 loc) · 2.67 KB
/
500.shtml
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
<!DOCTYPE html>
<html>
<head>
<title>Internal Server Error</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" >
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style type="text/css">
html {
width: 100%;
height: 100%;
}
.vc-container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 99vh;
background: url("https://www.publicdomainpictures.net/pictures/80000/velka/red-brick-wall-clipart.jpg#.W5guDpUt1yw.link") center repeat;
background-size: contain;
}
.vc-container::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9));
z-index: 1;
}
.vc-content {
text-align: center;
color: #fff;
z-index: 2;
font-family: "Monoton", cursive;
}
.vc-heading {
font-size: 12.1em;
margin: 0 0 20px;
color: #ff45ae;
text-shadow: 0 0 40px;
font-weight: 100;
animation: blink 6s ease-in-out;
}
.vc-sub-heading {
margin: 0;
font-size: 2em;
color: #66f38a;
text-shadow: 0 0 60px;
font-weight: 100;
animation: blink-sub 6s ease-in-out;
}
.blink-infinite {
animation: infinite-blink 0.2s 3s infinite;
}
@media screen and (max-width: 500px) {
.vc-heading {
font-size: 8em;
}
.vc-sub-heading {
font-size: 1.3em;
}
}
@keyframes blink {
35%,
37%,
39%,
41%,
100% {
color: #ff45ae;
text-shadow: 0 0 40px;
}
0%,
34%,
36%,
36%,
38%,
40% {
color: #9f9f9fb3;
text-shadow: none;
}
}
@keyframes blink-sub {
35%,
37%,
39%,
41%,
100% {
color: #66f38a;
text-shadow: 0 0 60px;
}
0%,
34%,
36%,
36%,
38%,
40% {
color: #9f9f9fb3;
text-shadow: none;
}
}
@keyframes infinite-blink {
60%,
80% {
color: #9f9f9fb3;
text-shadow: none;
}
70%,
100% {
color: #66f38a;
text-shadow: 0 0 30px;
}
}
.button1 {
background-color: white;
border: none;
color: brown;
padding: 15px 32px;
text-align: center;
text-decoration: double;
display: inline-block;
font-size: 20px;
border-radius: 25px;
}
</style>
<link href="https://fonts.googleapis.com/css?family=Monoton" rel="stylesheet">
</head>
<body>
<div class="vc-container">
<div class="vc-content">
<h1 class="vc-heading">500</h1>
<p class="vc-sub-heading">Internal Server <span class="blink-infinite">Error</span></p>
<br><br><a type="button" href="/" class="button1">BACK TO HOMEPAGE</a>
</div>
</div>
</div>
</body>
</html>