Add RSS subscription support

This commit is contained in:
User
2026-03-12 16:42:57 +08:00
parent f9dc3f7a40
commit d11873f921
4 changed files with 43 additions and 1 deletions

View File

@@ -17872,4 +17872,24 @@ html.darkmode .argon-hidden-text-background:active {
filter: none;
-webkit-filter: none;
user-select: auto;
}
}.site-rss {
margin-top: 15px;
display: flex;
justify-content: center;
}
.site-rss a {
width: 38px;
height: 38px;
display: flex;
align-items: center;
justify-content: center;
color: #fff !important;
background: var(--themecolor);
border-radius: 50%;
box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
transition: all .15s ease;
}
.site-rss a:hover {
transform: translateY(-1px);
box-shadow: 0 7px 14px rgba(50, 50, 93, .1), 0 3px 6px rgba(0, 0, 0, .08);
}