MediaWiki:Common.css:修订间差异

来自Helldivers资料站
跳转到导航 跳转到搜索
无编辑摘要
Lyx讨论 | 贡献
无编辑摘要
第46行: 第46行:
   margin-bottom: 14px;
   margin-bottom: 14px;
}
}
.stratagem-stats {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #333;
  padding-top: 12px;
  padding-bottom: 6px;
  font-size: 13px;
}
.stat-label {
  color: #888;
}
.stat-value {
  color: #fff;
  font-weight: bold;
}


/* common.css */
/* common.css */

2026年7月11日 (六) 06:22的版本

/* 图标列 - 自适应宽度 */
.wikitable .icon-cell {
    width: 1%;
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
}

/* 图标容器 - 固定大小并居中裁剪大图 */
.wikitable .icon-cell img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* ===== 战略配备 - 引用卡片样式 ===== */
.stratagem-card {
  flex: 1;
  border: 2px solid #ffd700;
  border-radius: 8px;
  padding: 16px 20px;
  background: #1a1a2e;
  color: #fff;
  font-family: Arial, sans-serif;
}

.stratagem-badge {
  font-size: 12px;
  color: #ffd700;
  letter-spacing: 2px;
  font-weight: bold;
  margin-bottom: 4px;
}

.stratagem-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 6px;
}

.stratagem-desc {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 14px;
}

/* common.css */

.stratagem-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
}

.stratagem-table td {
  padding: 6px 8px;
  border: none;
  vertical-align: middle;
}

/* 模拟 .stratagem-stats 的上边框效果 */
.stratagem-table tr {
  border-top: 1px solid #333;
}

.stratagem-table tr:first-child {
  border-top: none;
}

/* 模拟 .stat-label 效果(第一、三、五列) */
.stratagem-table td:nth-child(1),
.stratagem-table td:nth-child(3),
.stratagem-table td:nth-child(5) {
  color: #888;
  font-weight: normal;
  text-align: left;
  padding-right: 20px;
}

/* 模拟 .stat-value 效果(第二、四、六列) */
.stratagem-table td:nth-child(2),
.stratagem-table td:nth-child(4),
.stratagem-table td:nth-child(6) {
  color: #fff;
  font-weight: bold;
  text-align: right;
}

/* 如果想让整行有间距感,可以加 padding-top */
.stratagem-table tr {
  padding-top: 12px;
  padding-bottom: 6px;
  display: table-row;
}

/* 但如果用 display:table-row 不支持 padding,改用 cell 的 padding 替代 */
.stratagem-table td {
  padding-top: 12px;
  padding-bottom: 6px;
}