Mobile wallpaper 1
1420 字
7 分钟
美化合集
2025-09-27
浏览量:加载中...

1. 哪吒监控#

使用主题:Official

美化代码:

<!-- 自定义设置 -->
<script>
window.CustomBackgroundImage = "https://cf-api.goodnightan.com/p/wolp";
window.DisableAnimatedMan = "true";
window.CustomIllustration = 'https://img.028029.xyz/1734592545615.png';
window.ShowNetTransfer = "true";
window.CustomDesc = "欢迎查看晚安的服务器监控.";
</script>
<!-- 状态和进度条逻辑 -->
<script>
function applyCardStyles() {
const cards = document.querySelectorAll('div.rounded-lg.border.text-card-foreground');
cards.forEach(card => {
// 跳过无 section.grid 的卡片(例如统计卡片)
if (!card.querySelector('section.grid')) return;
// 1️⃣ 获取剩余天数
const remarkEls = card.querySelectorAll('[class*="text-muted-foreground"]');
let daysLeft = null;
remarkEls.forEach(el => {
const m = el.innerText.match(/剩余天数[::]?\s*(\d+)\s*天/);
if (m) daysLeft = parseInt(m[1]);
});
// 2️⃣ 设置进度条颜色
const bar = card.querySelector('[aria-label="Server Usage Bar"] > div');
if (bar) {
if (daysLeft !== null) {
if (daysLeft <= 10) {
bar.style.backgroundColor = "#ef4444"; // 红色
} else if (daysLeft > 30) {
bar.style.backgroundColor = "#22c55e"; // 绿色
} else {
bar.style.backgroundColor = "#ffffff"; // 白色
}
} else {
bar.style.backgroundColor = "#ffffff"; // 默认白色
}
}
// 3️⃣ 判断状态(是否在线/过期)
const statusDot = card.querySelector('section.grid span.h-2.w-2');
card.classList.remove('expired-offline', 'expired-online');
if (!statusDot) return;
const isOnline = statusDot.classList.contains('bg-green-500');
const expiredEl = [...card.querySelectorAll('*')].find(el =>
el.textContent.includes('已过期')
);
const isExpired = !!expiredEl;
if (isExpired && isOnline) {
card.classList.add('expired-online');
} else if (!isOnline) {
card.classList.add('expired-offline');
}
});
}
// 启动时监听 DOM
const observer = new MutationObserver(() => applyCardStyles());
window.addEventListener("load", () => {
const target = document.querySelector("main") || document.body;
if (target) {
observer.observe(target, { childList: true, subtree: true });
applyCardStyles();
}
});
</script>
<!-- 样式控制 -->
<style>
/* 上传字体颜色:红 */
[class*="上传"] > .text-xs.font-semibold,
[class*="上传"] + div > .text-xs.font-semibold {
color: #ef4444 !important;
}
/* 下载字体颜色:绿 */
[class*="下载"] > .text-xs.font-semibold,
[class*="下载"] + div > .text-xs.font-semibold {
color: #22c55e !important;
}
/* 左边上传统计条颜色 */
section.flex.items-center.w-full.justify-between.gap-1 > div:first-child {
color: #ef4444 !important;
border-color: #ef444433 !important;
}
/* 右边下载统计条颜色 */
section.flex.items-center.w-full.justify-between.gap-1 > div:last-child {
color: #22c55e !important;
border-color: #22c55e33 !important;
}
/* 🚫 删除进度条默认强制样式,改为 JS 控制 */
/* [aria-label="Server Usage Bar"] > div {
background-color: hsl(var(--primary)) !important;
background-image: none !important;
} */
/* 过期但离线或离线未过期:红色背景 + 红边 */
.expired-offline {
background-color: rgba(255, 86, 86, 0.15) !important;
border-color: #ef4444 !important;
color: inherit !important;
}
/* 过期但在线:黄色背景 + 黄边 */
.expired-online {
background-color: rgba(255, 221, 86, 0.15) !important;
border-color: rgb(228, 239, 68) !important;
color: inherit !important;
}
</style>

2. Uptime Kuma#

方案一:#

/* ============================
1. 字体引入
============================ */
/* 标题字体 */
@font-face {
font-family: "TitleFont";
src: url("https://cdn.jsdelivr.net/gh/nulijiazaizhong/fonts/harmonyOS/HarmonyOS_Sans.woff2") format("woff2"); /* 替换为自己的字体 */
font-weight: normal;
font-style: normal;
}
/* 正文字体 */
@font-face {
font-family: "BodyFont";
src: url("https://cdn.jsdelivr.net/gh/nulijiazaizhong/fonts/saye/saye.woff2") format("woff2"); /* 替换为自己的字体 */
font-weight: normal;
font-style: normal;
}
/* ============================
2. 全局字体设置
============================ */
body, p, span, div {
font-family: "BodyFont", sans-serif;
}
#app {
font-family: '1666963922', BlinkMacSystemFont, 'segoe ui', Roboto, 'helvetica neue',
Arial, 'noto sans', sans-serif, 'apple color emoji', 'segoe ui emoji',
'segoe ui symbol', 'noto color emoji' !important;
}
/* ============================
3. 背景设置
============================ */
body {
background: url("https://cf-api.goodnightan.com/p/wolp") no-repeat center center fixed;
background-size: cover;
}
/* ============================
4. 标题字体应用
============================ */
/* 分组标题 */
.group-title span[data-v-f71ca08e],
h1, h2, h3, h4, h5, h6 {
font-family: "TitleFont", sans-serif;
font-weight: 700;
}
/* 全局状态栏 */
.overall-status[data-v-b8247e57],
h1.page-title {
font-family: "TitleFont", sans-serif !important;
font-weight: 800;
font-size: 2.5rem;
text-align: center;
margin: 20px 0;
}
/* 页面主标题(带 logo) */
h1.title-flex,
h1.title-flex span[data-v-7d4a7f28] {
font-family: "TitleFont", sans-serif !important;
font-weight: 800;
font-size: 2.5rem;
text-align: center;
display: block;
margin: 20px auto;
background-image: linear-gradient(
90deg, #07c160, #fb6bea 25%, #3aedff 50%, #fb6bea 75%, #28d079
);
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
background-clip: text;
background-size: 400% 100%;
animation: wzw 10s linear infinite;
}
/* 页面主标题 Logo */
h1.title-flex .logo-wrapper img {
width: 40px;
height: 40px;
display: inline-block;
vertical-align: middle;
margin-right: 10px;
}
/* ============================
5. 渐变动画定义
============================ */
h1, h2, h3, .h1, .h2, .h3,
.group-title span,
.alert-heading.p-2 > h1,
.alert-heading.p-2 > h2 {
background-image: linear-gradient(
90deg, #07c160, #fb6bea 25%, #3aedff 50%, #fb6bea 75%, #28d079
);
font-family: '1666963922', sans-serif;
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
background-clip: text;
background-size: 400% 100%;
animation: wzw 10s linear infinite;
}
@keyframes wzw {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
/* ============================
6. 网格布局(监控项容器)
============================ */
.monitor-list > .monitor-list {
display: grid;
grid-template-columns: repeat(3, minmax(300px, 1fr));
grid-gap: 1rem;
justify-content: center;
}
/* 响应式布局 */
@media (max-width: 900px) {
.monitor-list > .monitor-list {
grid-template-columns: repeat(1, 1fr);
}
}
@media (min-width: 901px) and (max-width: 1400px) {
.monitor-list > .monitor-list {
grid-template-columns: repeat(2, 1fr);
}
}
@media (min-width: 1401px) {
.monitor-list > .monitor-list {
grid-template-columns: repeat(3, 1fr);
}
}
/* ============================
7. 卡片样式(监控项)
============================ */
/* 明亮主题 */
.shadow-box {
background-color: rgba(255, 255, 255, 0.65);
padding: 10px;
margin: 5px;
border-radius: 12px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
text-decoration: none;
}
/* 暗色主题 */
.dark .shadow-box:not(.alert) {
background-color: rgba(0, 0, 0, 0.35);
padding: 20px;
margin: 10px;
border-radius: 12px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
/* 边框 + Hover 效果 */
.monitor-list .item,
.shadow-box {
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 12px;
overflow: hidden;
transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.dark .monitor-list .item,
.dark .shadow-box {
border: 1px solid rgba(255, 255, 255, 0.2);
}
.monitor-list .item:hover,
.shadow-box:hover {
border-color: rgba(0, 123, 255, 0.8);
box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}
/* ============================
8. 侧边栏样式
============================ */
.sidebar {
background-color: rgba(255, 255, 255, 0.9);
padding: 20px;
margin: 10px;
border-radius: 12px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
/* ============================
9. 服务文字样式
============================ */
/* 服务名称 */
.item-name {
font-family: "BodyFont", sans-serif;
}
/* 服务描述 */
.description {
font-family: "BodyFont", sans-serif;
}
/* 刷新信息 */
.refresh-info[data-v-b8247e57] {
font-family: "BodyFont", sans-serif;
}

方案二:#

/* 自定义字体定义 */
@font-face {
font-family: '1666963922';
src: url('https://jsd.cdn.zzko.cn/gh/54ayao/ACG@main/static/fonts/1666963922.woff') format('woff');
font-weight: normal;
font-style: normal;
}
/* 全局样式 */
body {
font-family: '1666963922', sans-serif; /* 使用自定义字体 */
color: #333;
margin: 0;
padding: 0;
background-image: url('https://cf-api.goodnightan.com/p/wolp'); /* 自适应背景图片API */
background-attachment: fixed;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
/* 导航栏链接悬停样式 */
.navbar a:hover {
text-decoration: underline;
}
/* 卡片样式 */
.card {
background-color: #fff;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
padding: 20px;
}
/* 卡片标题样式 */
.card-title {
font-size: 18px;
font-weight: bold;
margin-bottom: 10px;
}
/* 在明亮主题下,应用不同的背景色及75%透明度 */
.shadow-box {
background-color: rgba(255, 255, 255, 0.75);
padding: 10px;
margin: 5px;
border-radius: 10px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
text-decoration: none;
}
/* 在暗色主题下,应用不同的背景色及65%透明度 */
.dark .shadow-box:not(.alert) {
background-color: rgba(0, 0, 0, 0.65);
padding: 20px;
margin: 10px;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
/* 侧边栏样式 */
.sidebar {
background-color: rgba(255, 255, 255, 0.9);
padding: 20px;
margin: 10px;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
/* 特定元素和类的样式 */
span[data-v-7d4a7f28],
.item-name,
div.description[data-v-7d4a7f28][data-v-b8247e57][contenteditable="true"],
div[data-v-7d4a7f28][data-v-b8247e57].alert-heading.p-2,
.refresh-info > div,
.alert-heading.p-2 > div,
.alert-heading.p-2 > p,
.alert-heading.p-2 > h1 {
background-image: linear-gradient(90deg, #07c160, #fb6bea 25%, #3aedff 50%, #fb6bea 75%, #28d079);
font-family: '1666963922', sans-serif;
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
background-size: 400% 100%;
animation: wzw 10s linear infinite;
}
/* 动画关键帧定义 */
@keyframes wzw {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
#app {
font-family: '1666963922', BlinkMacSystemFont, 'segoe ui', Roboto, 'helvetica neue', Arial, 'noto sans', sans-serif, 'apple color emoji', 'segoe ui emoji', 'segoe ui symbol', 'noto color emoji' !important;
}
美化合集
https://blog.goodnightan.com/posts/beautify/
作者
晚安
发布于
2025-09-27
许可协议
CC BY-NC-SA 4.0