-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
159 lines (147 loc) · 6.4 KB
/
404.html
File metadata and controls
159 lines (147 loc) · 6.4 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<title>weep.me - おいらの404 Not Found!</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@_weep">
<meta name="twitter:creator" content="@weepjp">
<meta name="twitter:url" content="https://weep.me/">
<meta name="twitter:title" content="weep.me - おいらの404 Not Found!">
<meta name="twitter:description" content="weepjp account links">
<meta name="twitter:image" content="https://weep.me/og.png?2025-07-20-02" />
<meta property="og:title" content="weep.me - おいらの404 Not Found!" />
<meta property="og:description" content="weepjp account links" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://weep.me/" />
<meta property="og:image" content="https://weep.me/og.png?2025-07-20-02" />
<meta property="og:image:type" content="image/png"/>
<meta property="og:image:width" content="1200"/>
<meta property="og:image:height" content="630"/>
<meta property="og:site_name" content="weep.me - おいらの404 Not Found!" />
<meta property="og:locale" content="ja_JP" />
<link href="https://weep.me/" rel="start" title="Home" />
<link href="https://weep.me/favicon.ico?2025-07-20-02" rel="icon" type="image/x-icon" />
<link href="https://weep.me/favicon.ico?2025-07-20-02" rel="shortcut icon" type="image/x-icon" />
<style>
* { margin:0; padding:0; box-sizing:border-box; }
body {
font-family:Arial,sans-serif;
background:#dec;
color:#111;
padding-top:48px;
padding-bottom:48px;
min-height:100vh;
position:relative;
}
header, footer {
position:fixed; left:0; right:0;
background:rgba(255,255,255,0.9);
z-index:100; text-align:center;
}
header { top:0; height:48px; border-bottom:1px solid #cdcdfe; }
footer { bottom:0; height:48px; border-top:1px solid #cdcdfe; }
header h1 { font-size:1.2rem; padding:12px 0; color:#333; }
footer small { font-size:0.8rem; color:#555; line-height:48px; }
footer a { color:#111; text-decoration:underline; }
.box {
max-width:1000px;
margin:32px auto;
background:#fff;
border:6px solid #cdcdfe;
border-radius:6px;
padding:16px;
}
.container {
display:grid;
grid-template-columns: repeat(2, 1fr);
column-gap:8px;
row-gap:24px;
}
@media (min-width: 600px) { .container { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 800px) { .container { grid-template-columns: repeat(4,1fr); } }
@media (min-width: 1200px) { .container { grid-template-columns: repeat(5,1fr); } }
h2 {
grid-column:1 / -1;
font-size:1.2rem;
margin:32px 0 4px; /* 上下に余白 */
color:#333;
text-align:left;
justify-self:start;
}
.link {
width:max-content;
margin:0 auto;
text-decoration:none;
color:inherit;
display:flex;
flex-direction:column;
align-items:center;
transition:transform .2s,box-shadow .2s;
}
.link:hover, .link:active {
filter:grayscale(100%);
animation:gkbr 0.1s infinite;
}
.link img {
width:48px; height:48px;
border-radius:3px;
object-fit:cover;
margin-bottom:4px;
}
.title { font-size:0.85rem; font-weight:bold; text-align:center; line-height:1.2; }
.subtitle { font-size:0.7rem; color:#666; text-align:center; line-height:1.2; }
.message {
grid-column:1 / -1;
display:flex; flex-direction:column;
justify-content:center; align-items:center;
padding:12px; border-radius:6px;
font-size:1rem; text-align:center;
opacity:0; animation:bounceFadeIn .5s ease-out forwards;
margin-bottom:16px; width:100%; box-sizing:border-box;
}
.message.loading { color:#555; }
.message.error { color:#c00; }
.message.error button {
margin-top:8px; padding:6px 12px;
border:none; border-radius:4px;
background:#c00; color:#fff;
font-size:0.85rem; cursor:pointer;
}
@keyframes bounceFadeIn {
0% { opacity:0; transform:scale(0.8); }
60% { opacity:1; transform:scale(1.1); }
100% { opacity:1; transform:scale(1); }
}
@keyframes gkbr {
0% { transform:translate(0,0) rotateZ(0deg); }
25% { transform:translate(2px,2px) rotateZ(1deg); }
50% { transform:translate(0,2px) rotateZ(0deg); }
75% { transform:translate(2px,0) rotateZ(-1deg); }
100% { transform:translate(0,0) rotateZ(0deg); }
}
</style>
</head>
<body>
<header>
<h1>weep.me - おいらの404 Not Found!</h1>
</header>
<div class="box">
<div class="message loading" id="status">
<div>404 Not Found!</div>
<div>
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAAAwCAMAAACBtxzkAAAACGFjVEwAAAADAAAAAM7tusAAAAAMUExURQAAAP///wAAANfv97oi3CIAAAABdFJOUwBA5thmAAAAGmZjVEwAAAAAAAAASgAAADAAAAAAAAAAAAAKAGQAAP1F6tYAAADXSURBVEjH7dQxDoMwEERR53P/O0cKxRSzy+BNgRTld24eXjBe/34rvBHTNpNeVmu1TxFUWXQjLE9Ooxl0fCJLbjUUWcobExWk9PqBipK0N6SoJGULKMeDZPo0qx6P0gKzLKMaCW5TIKo56vepeAa0gKHke81U7nmKsyuKs28pt+YD6heE5laATF1ZAFuULLsZAgWX1FGPaFKkZOlbREoSdo9OKERVJwJkefJ7SstgmcSytikydQ9DUrASxzZFljKlGsMlj1CgptbKzRlvII21NSkhc2s90BvV0gpeXWcbgAAAABpmY1RMAAAAAQAAAEYAAAApAAAAAAAAAAYACgBkAgDlCc/9AAAA5WZkQVQAAAACSMe11EEKwzAMAMFk9f8/tzSkmyI7Vmy6Rx0GIYO3fwXYMmKTyH5pxgINewglI1mLiFLriEXFho5K3QEiAkjKhCOkUnOMOByVar/M4ZzMPsvoyAA8YlyHIQOZsTaTFacyeR+Zdz2GzBjhNlZlDICll7ImA+sMn8S6DNwwoDVioMlcd1DJjI6SDEx8OYmhxiADESB5twy7kZkAToYmk3Ayczq9N1HpMDoyVBg6TMhUrttn2Kg5MGCshKjIhIxOVcnHsSIig8ydhKnYd06qq8iYY2pto9YUWyNya4ZNKi+yAgq7nlOfqwAAABpmY1RMAAAAAwAAAEoAAAAqAAAAAAAAAAYACgBkAADLHQSIAAAA12ZkQVQAAAAESMe11FEKwzAMBNF4cv87F1zaZaFCcpbOXxx4yMTO9e/4lDuwduxSKbOQYh1rOOOdYHIiSzvLLUGBJahvQEmKx5KUWojKLEm5haSBOqTKWxNTWsQeh9R6QrETVcZgh9zAiFo9dYtSGgP6TyjrJ/XWJE2obYEpNtr8jAJGmcrZcXeqGmT8mwfQIA1FS1EP5bs2qrKqOKYYSj1VWyYNqf4CHVA0TCl9V1HPJK3jFYyk+icjShk0ou6GaiQFmxLWd1XpZSQ5FUCyzG2kebmkUugFzNkJ3D0h+9sAAAAASUVORK5CYII=" alt="Now loading..." title="Now loading...">
</div>
<div><a href="https://weep.me/">Back to top!!</a></div>
</div>
</div>
<footer>
<small>
© 2018–2025
<a href="https://weep.jp/" target="_blank">weepjp</a>
(<a href="https://github.com/weepjp/weepjp.github.io" target="_blank">src</a>)
</small>
</footer>
</body>
</html>