打开/关闭菜单
切换首选项菜单
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。

MediaWiki:Common.css:修订间差异

MediaWiki界面页面
创建页面,内容为“→‎这里放置的CSS将应用于所有皮肤:​ →‎迷雾wiki头部样式:​ .mist-header { padding: 15px 0; margin-bottom: 20px; } .mist-logo { font-size: 1.8em; font-weight: bold; letter-spacing: 1px; margin-bottom: 5px; } .mist-tagline { font-style: italic; color: #888; margin-bottom: 10px; } .mist-nav { font-size: 0.95em; } .mist-separator { border: 0; height: 1px; background-image: linear-gradient(to right, rgba(0, 0, 0, 0),…”
 
无编辑摘要
 
(未显示同一用户的14个中间版本)
第1行: 第1行:
/* 这里放置的CSS将应用于所有皮肤 */
/* 这里放置的CSS将应用于所有皮肤 */
/* 迷雾wiki头部样式 */
/* 美化所有wikitable类的表格 */
.mist-header {
.wikitable {
  padding: 15px 0;
display: flex;
  margin-bottom: 20px;
    flex-direction: column;
    background-color: #1d1626;
    color: #e0e0e0;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    border-collapse: collapse;
    margin:auto; /* 这里的auto会使表格水平居中 */
    width: 100%;
    text-align: center; /* 整体居中对齐 */
}
}
 
/* 表格头放在左侧的样式 */
.mist-logo {
.wikitable th {
  font-size: 1.8em;
    background: #2d2039;
  font-weight: bold;
    color: #fff;
  letter-spacing: 1px;
    padding: 12px 15px;
  margin-bottom: 5px;
    text-align: center;
}
    font-weight: normal;
 
    letter-spacing: 1px;
.mist-tagline {
    border-bottom: 2px solid #3a2b4d;
  font-style: italic;
    vertical-align: top; /* 顶部对齐 */
  color: #888;
    border-right: 2px solid #503a6b; /* 添加右侧边框,区分表头和内容 */
  margin-bottom: 10px;
    position: relative; /* 为可能的装饰元素做准备 */
}
 
.mist-nav {
  font-size: 0.95em;
}
 
.mist-separator {
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  margin-bottom: 25px;
}
}

2025年3月4日 (二) 02:21的最新版本

/* 这里放置的CSS将应用于所有皮肤 */
/* 美化所有wikitable类的表格 */
.wikitable {
	display: flex;
    flex-direction: column;
    background-color: #1d1626;
    color: #e0e0e0;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    border-collapse: collapse;
    margin:auto; /* 这里的auto会使表格水平居中 */
    width: 100%;
    text-align: center; /* 整体居中对齐 */
}
/* 表格头放在左侧的样式 */
.wikitable th {
    background: #2d2039;
    color: #fff;
    padding: 12px 15px;
    text-align: center;
    font-weight: normal;
    letter-spacing: 1px;
    border-bottom: 2px solid #3a2b4d;
    vertical-align: top; /* 顶部对齐 */
    border-right: 2px solid #503a6b; /* 添加右侧边框,区分表头和内容 */
    position: relative; /* 为可能的装饰元素做准备 */
}