MediaWiki:Common.css:修订间差异

来自Nexus Chronicle 文枢新境 wiki
跳转到导航 跳转到搜索
创建页面,内容为“这里开始设置全站背景:​ body { background-image: url("https://wiki.lingzuian.top/images/thumb/5/52/Wiki_bg.jpg/1200px-Wiki_bg.jpg?20260708050453"); background-size: cover; background-attachment: fixed; background-position: center; background-repeat: no-repeat; } 让主内容区域变成半透明白色,这样背景能透出来一点点,又不影响看字:​ #content { background-color: rgba(255, 255, 255, 0.92); } /…”
 
无编辑摘要
 
第1行: 第1行:
/* 这里开始设置全站背景 */
/* 这里开始设置全站背景 */
body {
body {
     background-image: url("https://wiki.lingzuian.top/images/thumb/5/52/Wiki_bg.jpg/1200px-Wiki_bg.jpg?20260708050453");  
     background-image: url("https://wiki.lingzuian.top/images/thumb/e/ed/Server_Banner.jpg/1350px-Server_Banner.jpg");  
     background-size: cover;
     background-size: cover;
     background-attachment: fixed;
     background-attachment: fixed;

2026年7月8日 (三) 13:10的最新版本

/* 这里开始设置全站背景 */
body {
    background-image: url("https://wiki.lingzuian.top/images/thumb/e/ed/Server_Banner.jpg/1350px-Server_Banner.jpg"); 
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
}

/* 让主内容区域变成半透明白色,这样背景能透出来一点点,又不影响看字 */
#content {
    background-color: rgba(255, 255, 255, 0.92);
}

/* 让左侧导航栏也变成半透明 */
#mw-panel {
    background-color: rgba(255, 255, 255, 0.85);
}

/* 让顶部标题栏也半透明 */
#mw-head {
    background-color: rgba(255, 255, 255, 0.85);
}