This repository was archived by the owner on Feb 28, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherrorloadingpage.html
More file actions
71 lines (60 loc) · 2.28 KB
/
errorloadingpage.html
File metadata and controls
71 lines (60 loc) · 2.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Meowser meow:// links</title>
</head>
<body style="margin-left: 35px; margin-right: 35px;">
<br />
<h1>☹️ Error Loading Page</h1>
<p>There was a problem loading this page. Please check the URL or check your internet connection.</p>
</body>
<script>
setInterval(() => {
let theme = localStorage.getItem("shareTheme");
if (theme === "auto" || theme === "dark") {
document.documentElement.style.setProperty("--body-bg", "#1f1f1f");
document.documentElement.style.setProperty("--body-color", "#fff");
document.documentElement.style.setProperty("--link-color", "cyan");
document.documentElement.style.setProperty("--link-color-hover", "#00bbbb");
document.documentElement.style.setProperty("--small-text", "#bbb");
} else if (theme === "light") {
document.documentElement.style.setProperty("--body-bg", "#fff");
document.documentElement.style.setProperty("--body-color", "#000");
document.documentElement.style.setProperty("--link-color", "#00aaff");
document.documentElement.style.setProperty("--link-color-hover", "#00aaff");
document.documentElement.style.setProperty("--small-text", "#2e2e2e");
}
}, 50);
</script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
* {
margin: 0;
padding: 0;
font-family: "Roboto", sans-serif;
}
:root {
--body-bg: #1f1f1f;
--body-color: #fff;
--link-color: cyan;
--link-color-hover: #00bbbb;
--small-text: #bbb;
}
body {
background: var(--body-bg);
color: var(--body-color);
}
a {
color: var(--link-color);
}
a:hover {
text-decoration: none;
color: var(--link-color-hover);
}
small {
color: var(--small-text);
}
</style>
</html>