——公众号 南派三叔盗墓笔记
MediaWiki:Common.css:修订间差异
跳转到导航
跳转到搜索
无编辑摘要 |
无编辑摘要 |
||
| 第1行: | 第1行: | ||
/* | /* 最外层html强制全屏黑色,填满上下空白 */ | ||
html { | |||
background-color: #000 !important; | |||
} | |||
/* 页面主体黑色底层 */ | |||
body.skin-vector { | body.skin-vector { | ||
background-color: #000 !important; | background-color: #000 !important; | ||
} | } | ||
/* | /* 顶部导航栏彻底透明,露出黑背景 */ | ||
#mw-page-base { | #mw-page-base { | ||
background: transparent !important; | background: transparent !important; | ||
} | } | ||
/* | /* 左侧侧边栏半透明白底色 */ | ||
.portal { | .portal { | ||
background-color: rgba(255,255,255,0.85) !important; | background-color: rgba(255,255,255,0.85) !important; | ||
} | } | ||
/* | /* 正文内容区域半透明白底色 */ | ||
.mw-body { | .mw-body { | ||
background-color: rgba(255,255,255,0.85) !important; | background-color: rgba(255,255,255,0.85) !important; | ||
| 第19行: | 第23行: | ||
background-color: transparent !important; | background-color: transparent !important; | ||
} | } | ||
/* | /* 文字黑色 */ | ||
body { | body { | ||
color: #111; | color: #111; | ||
} | } | ||
2026年6月16日 (二) 21:23的版本
/* 最外层html强制全屏黑色,填满上下空白 */
html {
background-color: #000 !important;
}
/* 页面主体黑色底层 */
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;
}