Compare commits

...

6 Commits

Author SHA1 Message Date
GitHub Action
d2c462b046 🤖 Auto-update AI summary cache [skip ci] 2025-07-08 03:00:26 +00:00
0dabee6a18 Merge branch 'main' of https://github.com/Wcowin/Mkdocs-Wcowin 2025-07-08 10:59:39 +08:00
62e7666ea1 Update update2025.md 2025-07-08 10:59:35 +08:00
a3758c36c7 Update linktech.md 2025-07-08 10:58:57 +08:00
GitHub Action
4628abb9f5 🤖 Auto-update AI summary cache [skip ci] 2025-07-08 02:51:56 +00:00
018fcdd60f Update index.md 2025-07-08 10:51:10 +08:00
4 changed files with 263 additions and 216 deletions

View File

@ -6,5 +6,5 @@
"gemini" "gemini"
], ],
"summary_language": "zh", "summary_language": "zh",
"check_time": "2025-06-26T15:31:08.643287" "check_time": "2025-07-08T03:00:19.201435"
} }

View File

@ -6,85 +6,99 @@ hide:
- feedback - feedback
--- ---
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/Wcowin/Wcowin.github.io@main/docs/stylesheets/link.css">
复制后在需要添加友链的.md 文件页面粘贴即可 复制后在需要添加友链的.md 文件页面粘贴即可
```html hl_lines="75-110" ```html hl_lines="82-126"
<div class="post-body"> <div class="post-body">
<div id="links"> <div id="links">
<style> <style>
/* 通用卡片样式 */ /* 友链容器样式 */
.card { .link-navigation {
width: 320px; display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 1rem;
max-width: 100%;
}
/* 通用卡片样式 */
.card {
width: 100%;
max-width: 320px;
height: 90px; height: 90px;
font-size: 1rem; font-size: 1rem;
padding: 10px 20px; padding: 10px 20px;
border-radius: 25px; border-radius: 25px;
transition: transform 0.15s, box-shadow 0.15s, background 0.15s; transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
margin-bottom: 1rem;
display: flex; display: flex;
align-items: center; align-items: center;
color: #333; color: #333;
} justify-self: center;
.card:nth-child(odd) { }
float: left; .card:hover {
}
.card:nth-child(even) {
float: right;
}
.card:hover {
transform: translateY(0px) scale(1.05); transform: translateY(0px) scale(1.05);
background-color: rgba(68, 138, 255, 0.1); background-color: rgba(68, 138, 255, 0.1);
color: #040000; color: #040000;
} }
.card a { .card a {
border: none; border: none;
} }
.card .ava { .card .ava {
width: 3rem !important; width: 3rem !important;
height: 3rem !important; height: 3rem !important;
margin: 0 !important; margin: 0 !important;
margin-right: 1em !important; margin-right: 1em !important;
border-radius: 50%; border-radius: 50%;
} }
.card .card-header { .card .card-header {
font-style: italic; font-style: italic;
overflow: hidden; overflow: hidden;
width: auto; width: auto;
} }
.card .card-header a { .card .card-header a {
font-style: normal; font-style: normal;
color: #608DBD; color: #608DBD;
font-weight: bold; font-weight: bold;
text-decoration: none; text-decoration: none;
} }
.card .card-header a:hover { .card .card-header a:hover {
color: #d480aa; color: #d480aa;
text-decoration: none; text-decoration: none;
} }
.card .card-header .info { .card .card-header .info {
font-style: normal; font-style: normal;
color: #706f6f; color: #706f6f;
font-size: 14px; font-size: 14px;
min-width: 0; min-width: 0;
overflow: visible; overflow: visible;
white-space: normal; white-space: normal;
}
/* 小屏优化 */
@media (max-width: 768px) {
.link-navigation {
grid-template-columns: 1fr;
gap: 0.8rem;
} }
/* 小屏优化 */
@media (max-width: 768px) {
.card { .card {
width: 100%; width: 100%;
max-width: 100%;
height: auto; height: auto;
float: none; min-height: 80px;
} }
.card:hover { .card:hover {
background-color: rgba(68, 138, 255, 0.1); background-color: rgba(68, 138, 255, 0.1);
} }
} }
</style> </style>
<div class="links-content"> <div class="links-content">
<div class="link-navigation"> <div class="link-navigation">
<div class="card">
<img class="ava" src="https://avatars.githubusercontent.com/jaywhj" />
<div class="card-header">
<div>
<a href="https://jaywhj.netlify.app/" target="_blank">极简主义</a>
</div>
<div class="info">文档即产品</div>
</div>
</div>
<div class="card"> <div class="card">
<img class="ava" src="https://i.stardots.io/wcowin/1750089315509.png" /> <img class="ava" src="https://i.stardots.io/wcowin/1750089315509.png" />
<div class="card-header"> <div class="card-header">
@ -122,13 +136,13 @@ hide:
</div> </div>
</div> </div>
</div>
</div> </div>
</div> </div>
</div>
</div> </div>
``` ```
## 如何加入友链 ## 如何加入友链
```html ```html
@ -164,79 +178,95 @@ hide:
<div class="post-body"> <div class="post-body">
<div id="links"> <div id="links">
<style> <style>
/* 通用卡片样式 */ /* 友链容器样式 */
.card { .link-navigation {
width: 320px; display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 1rem;
max-width: 100%;
}
/* 通用卡片样式 */
.card {
width: 100%;
max-width: 320px;
height: 90px; height: 90px;
font-size: 1rem; font-size: 1rem;
padding: 10px 20px; padding: 10px 20px;
border-radius: 25px; border-radius: 25px;
transition: transform 0.15s, box-shadow 0.15s, background 0.15s; transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
margin-bottom: 1rem;
display: flex; display: flex;
align-items: center; align-items: center;
color: #333; color: #333;
} justify-self: center;
.card:nth-child(odd) { }
float: left; .card:hover {
}
.card:nth-child(even) {
float: right;
}
.card:hover {
transform: translateY(0px) scale(1.05); transform: translateY(0px) scale(1.05);
background-color: rgba(68, 138, 255, 0.1); background-color: rgba(68, 138, 255, 0.1);
color: #040000; color: #040000;
} }
.card a { .card a {
border: none; border: none;
} }
.card .ava { .card .ava {
width: 3rem !important; width: 3rem !important;
height: 3rem !important; height: 3rem !important;
margin: 0 !important; margin: 0 !important;
margin-right: 1em !important; margin-right: 1em !important;
border-radius: 50%; border-radius: 50%;
} }
.card .card-header { .card .card-header {
font-style: italic; font-style: italic;
overflow: hidden; overflow: hidden;
width: auto; width: auto;
} }
.card .card-header a { .card .card-header a {
font-style: normal; font-style: normal;
color: #608DBD; color: #608DBD;
font-weight: bold; font-weight: bold;
text-decoration: none; text-decoration: none;
} }
.card .card-header a:hover { .card .card-header a:hover {
color: #d480aa; color: #d480aa;
text-decoration: none; text-decoration: none;
} }
.card .card-header .info { .card .card-header .info {
font-style: normal; font-style: normal;
color: #706f6f; color: #706f6f;
font-size: 14px; font-size: 14px;
min-width: 0; min-width: 0;
overflow: visible; overflow: visible;
white-space: normal; white-space: normal;
}
/* 小屏优化 */
@media (max-width: 768px) {
.link-navigation {
grid-template-columns: 1fr;
gap: 0.8rem;
} }
/* 小屏优化 */
@media (max-width: 768px) {
.card { .card {
width: 100%; width: 100%;
max-width: 100%;
height: auto; height: auto;
float: none; min-height: 80px;
} }
.card:hover { .card:hover {
background-color: rgba(68, 138, 255, 0.1); background-color: rgba(68, 138, 255, 0.1);
} }
} }
</style> </style>
<div class="links-content"> <div class="links-content">
<div class="link-navigation"> <div class="link-navigation">
<div class="card">
<img class="ava" src="https://avatars.githubusercontent.com/jaywhj" />
<div class="card-header">
<div>
<a href="https://jaywhj.netlify.app/" target="_blank">极简主义</a>
</div>
<div class="info">文档即产品</div>
</div>
</div>
<div class="card"> <div class="card">
<img class="ava" src="https://i.stardots.io/wcowin/1750089315509.png" /> <img class="ava" src="https://i.stardots.io/wcowin/1750089315509.png" />
<div class="card-header"> <div class="card-header">
@ -255,6 +285,15 @@ hide:
<div class="info">社交分享平台</div> <div class="info">社交分享平台</div>
</div> </div>
</div> </div>
<div class="card">
<img class="ava" src="https://i.stardots.io/wcowin/1750220860750.jpg" />
<div class="card-header">
<div>
<a href="https://macapp.org.cn" target="_blank">Macapp</a>
</div>
<div class="info">一个专注于分享Mac资源的频道</div>
</div>
</div>
<div class="card"> <div class="card">
<img class="ava" src="https://i.stardots.io/wcowin/1750221795613.jpeg" /> <img class="ava" src="https://i.stardots.io/wcowin/1750221795613.jpeg" />
<div class="card-header"> <div class="card-header">
@ -265,8 +304,7 @@ hide:
</div> </div>
</div> </div>
</div>
</div> </div>
</div> </div>
</div>
</div> </div>

View File

@ -7,6 +7,16 @@ categories:
readtime: 2 readtime: 2
hide_reading_time: true hide_reading_time: true
--- ---
## </p><h1 id="01" name="01"><strong>2025-07-08</strong></h1><p>
* 优化网站流畅度(玄学)
* 修复[友链教程](../Mkdocs/linktech.md)的一些显示问题(感谢[Arron](https://github.com/jaywhj)
* 重新设计了页脚样式
## </p><h1 id="01" name="01"><strong>2025-06-15</strong></h1><p>
* 优化网站流畅度(玄学)
* 优化CDN配置
* 引入全局圆角化设计,参考[Material Design](https://material.io/design)设计规范
## </p><h1 id="01" name="01"><strong>2025-04-30</strong></h1><p> ## </p><h1 id="01" name="01"><strong>2025-04-30</strong></h1><p>
* 优化网站流畅度(玄学) * 优化网站流畅度(玄学)
* 修复[关于](../../about/geren.md)页面的显示问题 * 修复[关于](../../about/geren.md)页面的显示问题

View File

@ -238,9 +238,8 @@ body::before {
} }
</style> </style>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-2327435979273742" <!-- <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-2327435979273742"
crossorigin="anonymous"></script> crossorigin="anonymous"></script>
<!-- AD1 -->
<ins class="adsbygoogle" <ins class="adsbygoogle"
style="display:block" style="display:block"
data-ad-client="ca-pub-2327435979273742" data-ad-client="ca-pub-2327435979273742"
@ -249,4 +248,4 @@ body::before {
data-full-width-responsive="true"></ins> data-full-width-responsive="true"></ins>
<script> <script>
(adsbygoogle = window.adsbygoogle || []).push({}); (adsbygoogle = window.adsbygoogle || []).push({});
</script> </script> -->