-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.html
More file actions
143 lines (126 loc) · 3.88 KB
/
error.html
File metadata and controls
143 lines (126 loc) · 3.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Spoopify</title>
<meta name="viewport" content="height=device-height, width=device-width, initial-scale=1">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Electrolize&family=Rubik:wght@300..900&display=swap" rel="stylesheet">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
</head>
<body>
<div id="content">
<h1>No Bueno</h1>
<h1>Spotify said too many people<br>Try again next time</h1>
<div>
<a href="https://spoopify.me">Back</a>
</div>
</div>
<div id="footer">
<p>Signed, sealed, delivered by <a href="https://www.daneee.com" target="_blank">Dane</a></p>
</div>
</body>
</html>
<style>
html {
background: linear-gradient(100deg, #D53C68, #D55A87, #f2a1b3, #C099BF);
background-size: 250% 250%;
overflow-x: hidden;
animation: gradient 10s ease-in-out infinite;
max-width: 100vw;
height: 110vh;
position: relative;
}
body {
text-align: center;
color: #3C2245;
padding: 20% 7% 2% 7%;
margin: 0;
}
h1 {
font-family: 'Rubik', sans-serif;
font-size: 2rem;
font-weight: 700;
text-shadow:
-2px -2px 2px rgba(255,255,255,0.3),
2px 2px 2px rgba(0,0,0,0.2);
margin-top: 0;
}
p {
font-family: Rubik, sans-serif;
}
a {
color: #3C2245;
text-decoration: none;
}
#content {
display: inline-block;
background-color: rgba(255, 255, 255, 0.6);
border-radius: 48px;
padding: 2.1rem;
box-shadow:
1px 2px 2px rgba(0, 0, 0, 0.03),
2px 4px 4px rgba(0, 0, 0, 0.03),
4px 8px 8px rgba(0, 0, 0, 0.03),
8px 16px 16px rgba(0, 0, 0, 0.03),
16px 32px 32px rgba(0, 0, 0, 0.03);
animation: floating 7s ease-in-out infinite;
}
#content p {
font-size: 1.8rem;
font-weight: 500;
text-shadow:
-1px -1px 1px rgba(255,255,255,0.3),
1px 1px 1px rgba(0,0,0,0.2);
}
#content a {
display: block;
font-family: 'Electrolize', monospace;
font-size: 1.4rem;
margin: 2.5rem 0 1rem 0;
padding: 5%;
border-radius: 16px;
box-shadow: 5px 5px 10px rgba(0,0,0,0.1), -5px -5px 10px rgba(255,255,255,0.18);
text-shadow: 1px 1px 0px rgba(0,0,0,0.2), 0px -1px 0px rgba(255,255,255,0.3);
}
#content a:hover {
background: linear-gradient(170deg, rgba(255,255,255,0.18), rgba(0,0,0,0.07));
}
#content a:active {
box-shadow: inset 5px 5px 10px rgba(0,0,0,0.1), inset -5px -5px 10px rgba(255,255,255,0.2);
}
#footer {
position: absolute;
bottom: 7px;
color: #8F254B;
padding: 2% 0;
}
#footer p {
margin: 0;
}
#footer a {
text-decoration: underline;
color: #8F254B;
}
#footer a:hover {
color: #48CDB5;
}
@media (orientation: landscape) {
body {
padding: 6%;
}
}
@keyframes gradient {
0%{background-position:0% 49%}
50%{background-position:100% 50%}
100%{background-position:0% 49%}
}
@keyframes floating {
0% { transform: translate(0, 0px); }
50% { transform: translate(0, 7px); }
100% { transform: translate(0, -0px); }
}
</style>