——公众号 南派三叔盗墓笔记
MediaWiki:Common.css:修订间差异
跳转到导航
跳转到搜索
无编辑摘要 |
无编辑摘要 |
||
| 第1行: | 第1行: | ||
/* | /* 全局页面黑色底层 */ | ||
body.skin-vector { | body.skin-vector { | ||
background-color: #000 !important; | background-color: #000 !important; | ||
} | } | ||
/* | /* 顶部导航栏彻底透明,不遮挡黑背景 */ | ||
#mw-page-base { | |||
background: transparent !important; | |||
} | |||
/* 左侧侧边栏半透明白 */ | |||
.portal { | |||
background-color: rgba(255,255,255,0.85) !important; | background-color: rgba(255,255,255,0.85) !important; | ||
} | } | ||
/* | /* 正文内容区域半透明白 */ | ||
. | .mw-body { | ||
background-color: rgba(255,255,255,0.85) !important; | background-color: rgba(255,255,255,0.85) !important; | ||
} | } | ||
/* | /* 页脚透明 */ | ||
# | #footer { | ||
background: transparent !important; | background-color: transparent !important; | ||
} | } | ||
/* | /* 普通文字黑色 */ | ||
body { | body { | ||
color:# | color: #111; | ||
} | } | ||
2026年6月16日 (二) 21:22的版本
/* 全局页面黑色底层 */
body.skin-vector {
background-color: #000 !important;
}
/* 顶部导航栏彻底透明,不遮挡黑背景 */
#mw-page-base {
background: transparent !important;
}
/* 左侧侧边栏半透明白 */
.portal {
background-color: rgba(255,255,255,0.85) !important;
}
/* 正文内容区域半透明白 */
.mw-body {
background-color: rgba(255,255,255,0.85) !important;
}
/* 页脚透明 */
#footer {
background-color: transparent !important;
}
/* 普通文字黑色 */
body {
color: #111;
}