打开/关闭菜单
60
73
29
1.1K
武外梗百科
打开/关闭外观设置菜单
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。

MediaWiki:Common.css:修订间差异

MediaWiki界面页面
无编辑摘要
无编辑摘要
第202行: 第202行:
}
}


/* ---------- 字数大显示区 ---------- */
/* 统计字数板块容器 */
#wiki-wordcount {
#wiki-wordcount {
     width: 100%;
     width: 100%;
第214行: 第214行:
}
}


/* “标签/描述”更小 */
/* 小一号的标签文字(不抢数字焦点) */
#wiki-wordcount .stat-label {
#wiki-wordcount .stat-label {
     font-size: 1.2rem;
     font-size: 1.4em;
     font-weight: 500;
     font-weight: 500;
     color: #555;
     color: #555;
     margin-bottom: 4px;
     margin-bottom: 8px;
}
}


/* 数字主体更帅气 + 保证等宽效果 */
/* 主数字主体 */
#wiki-wordcount-number {
#wiki-wordcount-number {
     font-family: "Roboto Mono", "Courier New", monospace !important;
     font-family: "Roboto Mono", "Courier New", monospace; /* 确保等宽数字 */
     font-size: 6.2rem;
     font-size: 6rem;
     font-weight: 900;
     font-weight: 800;
    min-width: 18ch;
    letter-spacing: 0.08em;
      
      
     background: linear-gradient(90deg, #00CCFF, #FF69B4);
    /* 精致渐变文字色 */
     background: linear-gradient(90deg, #0066FF, #33CCFF);
     -webkit-background-clip: text;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text; /* 标准写法 */
     text-shadow:
     color: transparent;   /* 让渐变可见 */
        0 0 10px rgba(0, 204, 255, 0.6),
        0 0 24px rgba(255, 105, 180, 0.4);


     white-space: nowrap;
     /* 横向占更宽空间 */
}
    min-width: 18ch;         /* 至少 18 个字符宽 */
    letter-spacing: 0.06em;  /* 略宽字间 */


/* 更大屏幕下的微调 */
     white-space: nowrap;    /* 不换行 */
@media screen and (min-width: 1200px) {
     #wiki-wordcount-number {
        font-size: 7.6rem;
        letter-spacing: 0.12em;
        min-width: 20ch;
     }
}
}