MediaWiki:Common.css:修订间差异

来自Moebbs wiki
创建页面,内容为“这里放置的CSS将应用于所有皮肤:​ == MoeBBS Wiki 美化样式 ==:​ 页面整体:​ body { background: linear-gradient(135deg, #ffe0f0 0%, #f0e0ff 100%); font-family: "Noto Sans", "Microsoft YaHei", sans-serif; color: #333; line-height: 1.7; } 标题区:​ .moe-banner { text-align: center; padding: 40px 20px; background: rgba(255, 255, 255, 0.7); border-radius: 20px; margin: 20px auto; max-width: 850px; box-shadow…”
 
(没有差异)

2025年10月31日 (五) 11:38的最新版本

/* 这里放置的CSS将应用于所有皮肤 */
/* == MoeBBS Wiki 美化样式 == */

/* 页面整体 */
body {
  background: linear-gradient(135deg, #ffe0f0 0%, #f0e0ff 100%);
  font-family: "Noto Sans", "Microsoft YaHei", sans-serif;
  color: #333;
  line-height: 1.7;
}

/* 标题区 */
.moe-banner {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  margin: 20px auto;
  max-width: 850px;
  box-shadow: 0 0 15px rgba(255, 128, 192, 0.3);
  backdrop-filter: blur(8px);
}
.moe-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #ff80c0;
  text-shadow: 0 0 10px rgba(255, 128, 192, 0.4);
}
.moe-highlight {
  color: #d060ff;
}
.moe-subtitle {
  margin-top: 0.6em;
  font-size: 1.1em;
  color: #666;
}
.moe-subdesc {
  color: #777;
  font-size: 0.95em;
}

/* 区块标题 */
.moe-section h2 {
  color: #d060ff;
  border-bottom: 2px solid #ffb0e0;
  font-size: 1.4em;
  padding-bottom: 0.3em;
}

/* 卡片布局 */
.moe-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}
.moe-card {
  background: #fff;
  border-radius: 14px;
  width: 260px;
  padding: 1.2em;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 192, 224, 0.3);
}
.moe-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(255, 128, 192, 0.3);
}
.moe-card-title {
  font-weight: bold;
  color: #d060ff;
  margin-bottom: 0.4em;
  font-size: 1.05em;
}
.moe-card-text {
  color: #666;
  font-size: 0.9em;
}

/* 区块统一 */
.moe-section {
  background: rgba(255, 255, 255, 0.6);
  margin: 30px auto;
  padding: 20px;
  border-radius: 16px;
  max-width: 900px;
  box-shadow: 0 0 8px rgba(255, 128, 192, 0.15);
  backdrop-filter: blur(4px);
}

/* 页脚 */
.moe-footer {
  text-align: center;
  color: #888;
  font-size: 0.9em;
  margin: 50px 0 20px 0;
}