跳转到内容
打开/关闭菜单
  • 1 条目
  • 1 用户
  • 147 编辑
Anachronism
打开/关闭外观设置菜单
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。

MediaWiki:Citizen.css

MediaWiki界面页面
Ancimen​(留言 | 贡献)2026年9月26日 (六) 23:01的版本 (创建页面,内容为“→这里所有CSS都会加载给Citizen皮肤的用户:​ →footer 整体:加间距 + 换配色:​ .citizen-footer { margin-top: 4rem; padding: 3rem 1.5rem 2rem; background: linear-gradient(180deg, #2a0006 0%, #56000d 100%); color: rgba(255, 255, 255, 0.85); border-top: none; } →站点描述:​ .citizen-footer__desc { color: rgba(255, 255, 255, 0.75); font-size: 0.95rem; line-height: 1.7; } →底部链接:​ #footer-plac…”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)

注意:在发布之后,您可能需要清除浏览器缓存才能看到所作出的更改的影响。

  • Firefox或Safari:按住Shift的同时单击刷新,或按Ctrl-F5或Ctrl-R(Mac为⌘-R)
  • Google Chrome:按Ctrl-Shift-R(Mac为⌘-Shift-R)
  • Edge:按住Ctrl的同时单击刷新,或按Ctrl-F5。
/* 这里所有CSS都会加载给Citizen皮肤的用户 */
/* footer 整体:加间距 + 换配色 */
.citizen-footer {
    margin-top: 4rem;
    padding: 3rem 1.5rem 2rem;
    background: linear-gradient(180deg, #2a0006 0%, #56000d 100%);
    color: rgba(255, 255, 255, 0.85);
    border-top: none;
}

/* 站点描述 */
.citizen-footer__desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* 底部链接 */
#footer-places a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s;
}
#footer-places a:hover {
    color: #fff;
}

/* tagline */
#footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-align: center;
}