update
continuous-integration/drone/push Build is passing Details

This commit is contained in:
186526 2024-02-26 21:55:56 +08:00
parent b4b5bebaf4
commit 3d91194116
4 changed files with 182 additions and 171 deletions

View File

@ -190,6 +190,8 @@
<p>「長い夜の終わりを信じながら」<br>“仍信长夜终破晓”</p> <p>「長い夜の終わりを信じながら」<br>“仍信长夜终破晓”</p>
<p>「人生全部が馬鹿みたいなのに」<br>“人生什么的全部明明愚蠢至极”</p> <p>「人生全部が馬鹿みたいなのに」<br>“人生什么的全部明明愚蠢至极”</p>
<p>「牡丹は散っても花だ 夏が去っても追慕は切だ」<br>“牡丹落尽亦是花,夏去秋来思愈切。”</p> <p>「牡丹は散っても花だ 夏が去っても追慕は切だ」<br>“牡丹落尽亦是花,夏去秋来思愈切。”</p>
<p>「きっと、人生最後の日も愛をうたうのだろう」<br>“我一定也会在人生最后的日子讴歌着爱”</p>
<p>「もうちょっとだけ貴方を探せたら もう一歩だけ歩いてみれるかな」<br>“如果再稍稍去寻找一下你的话,我就能再向前踏出一步了吧”</p>
<p>人生、二十七で死ねるならロックンロールは僕を救った</p> <p>人生、二十七で死ねるならロックンロールは僕を救った</p>
</none> </none>

View File

@ -10,7 +10,7 @@ import Tippy from 'tippy.js';
import 'tippy.js/dist/tippy.css'; import 'tippy.js/dist/tippy.css';
import 'tippy.js/animations/scale.css'; import 'tippy.js/animations/scale.css';
window.addEventListener("load", (_ev) => { window.addEventListener("DOMContentLoaded", (_ev) => {
new Typed(document.querySelector("description") ?? "description", { new Typed(document.querySelector("description") ?? "description", {
stringsElement: "#description-list", stringsElement: "#description-list",
shuffle: true, shuffle: true,

View File

@ -21,12 +21,12 @@
h2, h2,
h1 { h1 {
font-family: "Google Sans", Roboto, Noto Sans SC, sans-serif; font-family: "Google Sans", Roboto, Noto Sans SC, sans-serif;
color: var(--linear-end-color);
background-image: linear-gradient( background-image: linear-gradient(
90deg, 90deg,
var(--linear-start-color), var(--linear-start-color),
var(--linear-end-color) var(--linear-end-color)
) !important; );
color: transparent !important;
-webkit-background-clip: text; -webkit-background-clip: text;
background-clip: text; background-clip: text;
-webkit-text-fill-color: transparent; -webkit-text-fill-color: transparent;

View File

@ -11,6 +11,7 @@
}, },
"continue": true "continue": true
}, },
{ "handle": "filesystem" },
{ {
"src": "/goto/github", "src": "/goto/github",
"status": 302, "status": 302,
@ -54,6 +55,14 @@
{ {
"src": "/shields.io/(.*)", "src": "/shields.io/(.*)",
"dest": "https://img.shields.io/$1" "dest": "https://img.shields.io/$1"
},
{
"src": "/(.*)",
"status": 302,
"headers": {
"Location": "/?from=$1"
},
"continue": false
} }
] ]
} }