mirror of
https://github.com/DefectingCat/DefectingCat.github.io
synced 2025-07-15 16:51:37 +00:00
update test 更新文章 1. 测试新主题 挖坑 挖坑 update config 更新文章 1. 简易FaaS平台 更新文章 1. 修复错误 更新文章:Promise信任问题 update theme 1. 合并js post: update notedly fix: update faas feature: change theme * fix: comment * feature: pgp * fix: delete local file post: update darkmode update: update dependencies fix: navbar in post incorrect height * pre code adapt to dark mode update new post useCallback update dependencies new post tiny router * add static files update vue tiny router 添加备案 * 更新依赖 add post Add ignore file
28 lines
476 B
CSS
28 lines
476 B
CSS
.l_header #wrapper .nav-main .title {
|
|
display: flex;
|
|
}
|
|
.l_header #wrapper .nav-main .title img {
|
|
height: 40px !important;
|
|
}
|
|
|
|
@media screen and (max-width: 500px) {
|
|
.l_header .container,
|
|
.l_header #wrapper .nav-main {
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
/* 代码块适配暗色模式 */
|
|
:root {
|
|
--code-color: #fafafa;
|
|
}
|
|
|
|
.hljs {
|
|
background: var(--code-color) !important;
|
|
transition: all 0.5s ease !important;
|
|
}
|
|
|
|
[data-user-color-scheme='dark'] {
|
|
--code-color: #c7c7c7;
|
|
}
|