-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
154 lines (138 loc) · 3.71 KB
/
Copy pathindex.html
File metadata and controls
154 lines (138 loc) · 3.71 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noindex, follow">
<meta name="description" content="RYMCU 旧站已停止维护,请访问 RYMCU 官方网站。">
<meta http-equiv="refresh" content="0; url=https://rymcu.com/">
<link rel="canonical" href="https://rymcu.com/">
<link rel="icon" href="https://rymcu.com/favicon.ico">
<meta property="og:type" content="website">
<meta property="og:site_name" content="RYMCU">
<meta property="og:title" content="RYMCU 已迁移至新站">
<meta property="og:description" content="访问 RYMCU 官方网站,获取开源项目、实战教程与社区内容。">
<meta property="og:url" content="https://rymcu.com/">
<title>RYMCU 已迁移至新站</title>
<script>
window.location.replace("https://rymcu.com/")
</script>
<style>
:root {
color-scheme: light dark;
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background: #f7faf9;
color: #17211d;
}
* {
box-sizing: border-box;
}
body {
min-height: 100vh;
margin: 0;
display: grid;
place-items: center;
padding: 24px;
background: #f7faf9;
}
main {
width: min(100%, 640px);
}
.brand {
display: inline-flex;
align-items: center;
gap: 12px;
color: #17211d;
font-size: 18px;
font-weight: 700;
text-decoration: none;
}
.brand-mark {
width: 44px;
height: 44px;
display: grid;
place-items: center;
border-bottom: 4px solid #f59e0b;
border-radius: 8px;
background: #087f5b;
color: #ffffff;
font-size: 14px;
}
.eyebrow {
margin: 48px 0 12px;
color: #087f5b;
font-size: 14px;
font-weight: 700;
}
h1 {
margin: 0;
font-size: 40px;
line-height: 1.2;
letter-spacing: 0;
}
p {
max-width: 560px;
margin: 20px 0 0;
color: #53625b;
font-size: 18px;
line-height: 1.7;
}
.action {
display: inline-flex;
align-items: center;
gap: 8px;
min-height: 44px;
margin-top: 28px;
padding: 10px 16px;
border-radius: 6px;
background: #087f5b;
color: #ffffff;
font-weight: 700;
text-decoration: none;
}
.action:focus-visible {
outline: 3px solid #f59e0b;
outline-offset: 3px;
}
@media (max-width: 520px) {
h1 {
font-size: 32px;
}
p {
font-size: 16px;
}
}
@media (prefers-color-scheme: dark) {
:root,
body {
background: #111815;
color: #f1f5f3;
}
.brand {
color: #f1f5f3;
}
.eyebrow {
color: #5ee0ad;
}
p {
color: #b5c3bd;
}
}
</style>
</head>
<body>
<main>
<a class="brand" href="https://rymcu.com/" aria-label="前往 RYMCU 官方网站">
<span class="brand-mark" aria-hidden="true">RY</span>
<span>RYMCU</span>
</a>
<div class="eyebrow">旧站已退役</div>
<h1>RYMCU 已迁移至新站</h1>
<p>正在前往 RYMCU 官方网站,继续浏览开源项目、实战教程与社区内容。</p>
<a class="action" href="https://rymcu.com/">
前往 rymcu.com
<span aria-hidden="true">→</span>
</a>
</main>
</body>
</html>