MainPage/bookmarks.html
moonlightwatch 7cc9813c43
Some checks failed
Upload / Explore-Gitea-Actions (push) Failing after 40s
update mainpage
2025-03-26 19:24:26 +08:00

151 lines
3.8 KiB
HTML

<!doctype html>
<html lang="zh">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="color-scheme" content="dark light">
<title>Bookmarks</title>
<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=Ruluko&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="/css/main.css" />
<style>
body {
font: 18px/1.8 Ruluko, "PingFang SC", "Microsoft Jhenghei", "Microsoft YaHei", sans-serif;
}
h1 {
margin-top: 50px;
text-align: center;
}
.bookmarks {
display: flex;
flex-wrap: wrap;
margin: 50px 5%;
width: 90%;
}
.bookmarks section {
padding: 20px;
flex-basis: 33.3%;
box-sizing: border-box;
border: 1px solid #eee;
}
.bookmarks section:nth-of-type(2n - 1) {
background: #fafafa;
}
.bookmarks ul {
padding: 0 15px;
}
.bookmarks ul li {
position: relative;
margin: 10px 0;
list-style: none;
text-align: left;
}
.bookmarks ul li:before {
content: "";
position: absolute;
width: 6px;
height: 6px;
background: #c9ced1;
border-radius: 50%;
left: -13px;
top: 12px;
}
@media (prefers-color-scheme: dark) {
html {
background: #0e121c;
}
body {
color: #6C7486;
}
h3 {
color: #cadef8;
}
.bookmarks section {
border: 1px solid #2c2e43;
background: #191e31;
}
.bookmarks section:nth-of-type(2n - 1) {
background: #151B2A;
}
.bookmarks ul li:before {
background: #6C7486;
}
.bookmarks a:hover {
color: #cadef8;
}
}
</style>
</head>
<body>
<h1>Bookmarks</h1>
<div class="bookmarks">
<section>
<h3 id="angular-2-docs">工具箱</h3>
<ul>
<li>
<a href="https://git.轻聆月下.net/">
代码仓库 - Gitea
</a>
</li>
<li>
<a href="https://file.轻聆月下.net/">
文件快递柜 - FileCodeBox
</a>
</li>
<li>
<a href="https://note.轻聆月下.net/">
在线笔记 - AFFiNE
</a>
</li>
<li>
<a href="https://db.轻聆月下.net/">
数据库管理 - DBGate
</a>
</li>
<li>
<a href="https://db.轻聆月下.net/gotify/">
消息服务 - Gotify
</a>
</li>
</ul>
</section>
<section>
<h3 id="angular-2-docs">在线开发</h3>
<li>
<a href="https://coder.轻聆月下.net/?folder=/root/mainpage">
主页项目
</a>
</li>
<li>
<a href="https://coder.轻聆月下.net/?folder=/root/blog">
博客项目
</a>
</li>
</section>
</div>
</body>
</html>