MediaWiki:Common.css:修订间差异
外观
无编辑摘要 |
无编辑摘要 |
||
| 第1行: | 第1行: | ||
/**************************************************** | /**************************************************** | ||
* ✅ 次元企鹅百科 v5. | * ✅ 次元企鹅百科 v5.7 — 首页专用最终稳定版 | ||
* 顶部渐变 + | * 顶部渐变 + 完美去白框 + 轻萌风图片 + Vector-2022 适配 | ||
****************************************************/ | ****************************************************/ | ||
/* ================================================== | /* ================================================== | ||
✅ 顶部渐变 Header | ✅ 顶部渐变 Header 样式(保持原样) | ||
================================================== */ | ================================================== */ | ||
.pg-header { | .pg-header { | ||
width: 100%; | width: 100%; | ||
| 第13行: | 第15行: | ||
text-align: center; | text-align: center; | ||
border-radius: 0 0 22px 22px; | border-radius: 0 0 22px 22px; | ||
box-shadow: | box-shadow: none !important; | ||
margin-bottom: 30px; | margin-bottom: 30px; | ||
} | } | ||
| 第22行: | 第24行: | ||
} | } | ||
/* | /* ✅ LOGO 去死框 */ | ||
.pg-header__logo { | .pg-header__logo { | ||
background: none !important; | background: none !important; | ||
| 第29行: | 第31行: | ||
border-radius: 0 !important; | border-radius: 0 !important; | ||
box-shadow: none !important; | box-shadow: none !important; | ||
display: inline-block; | display: inline-block !important; | ||
} | } | ||
/* ✅ | /* ✅ 防止图片被 VE 限制 */ | ||
.pg-logo-img { | .pg-logo-img { | ||
display: inline-block !important; | display: inline-block !important; | ||
| 第39行: | 第41行: | ||
} | } | ||
/* | /* ================================================== | ||
✅ 核心导航 | |||
================================================== */ | |||
.pg-grid { | .pg-grid { | ||
display: grid; | display: grid; | ||
| 第101行: | 第75行: | ||
/* | /* ================================================== | ||
✅ 新番推荐(封面卡片) | |||
================================================== */ | |||
.pg-gallery { | .pg-gallery { | ||
display: grid; | display: grid; | ||
| 第132行: | 第107行: | ||
/* | /* ================================================== | ||
✅ 关于本站 | |||
================================================== */ | |||
.pg-about { | .pg-about { | ||
max-width: 900px; | max-width: 900px; | ||
| 第145行: | 第121行: | ||
/* | /* ================================================== | ||
✅ ✅ ✅ 首页白背景大框 — 最终彻底清除 | |||
Vector-2022 会给首页套 3 层白壳(body→content→mw-body) | |||
下面代码逐一击破 | |||
================================================== */ | |||
/* ✅ 第 1 层:外层 page-container */ | |||
body.page-Main_Page .vector-page-container { | body.page-Main_Page .vector-page-container { | ||
background: transparent !important; | background: transparent !important; | ||
border: none !important; | |||
box-shadow: none !important; | |||
padding: 0 !important; | padding: 0 !important; | ||
margin: 0 !important; | margin: 0 !important; | ||
} | |||
/* ✅ 第 2 层:content 容器 */ | |||
body.page-Main_Page #content, | |||
body.page-Main_Page .vector-main-container { | |||
background: transparent !important; | |||
border: none !important; | border: none !important; | ||
box-shadow: none !important; | box-shadow: none !important; | ||
padding: 0 !important; | |||
margin: 0 !important; | |||
border-radius: 0 !important; | |||
} | } | ||
/* ✅ | /* ✅ 第 3 层:mw-body / vector-body */ | ||
body.page-Main_Page | body.page-Main_Page .mw-body, | ||
body.page-Main_Page .mw-body-content, | |||
body.page-Main_Page .vector-body { | |||
background: transparent !important; | background: transparent !important; | ||
border: none !important; | |||
box-shadow: none !important; | |||
padding: 0 !important; | padding: 0 !important; | ||
border: | margin: 0 !important; | ||
border-radius: 0 !important; | |||
} | } | ||
/* | /* ================================================== | ||
✅ 首页取消自动图片框(不影响文章) | |||
================================================== */ | |||
body.page-Main_Page figure, | |||
body.page-Main_Page .thumb, | body.page-Main_Page .thumb, | ||
body.page-Main_Page .thumbinner, | body.page-Main_Page .thumbinner, | ||
body.page-Main_Page .mw-file-element, | |||
body.page-Main_Page .tleft, | body.page-Main_Page .tleft, | ||
body.page-Main_Page .tright, | body.page-Main_Page .tright, | ||
| 第185行: | 第175行: | ||
} | } | ||
/* ✅ | /* ✅ 首页不把第一段当成 pre */ | ||
body.page-Main_Page | body.page-Main_Page pre { | ||
white-space: normal !important; | |||
background: transparent !important; | background: transparent !important; | ||
padding: 0 !important; | |||
border: none !important; | border: none !important; | ||
} | } | ||
2025年11月7日 (五) 18:06的版本
/****************************************************
* ✅ 次元企鹅百科 v5.7 — 首页专用最终稳定版
* 顶部渐变 + 完美去白框 + 轻萌风图片 + Vector-2022 适配
****************************************************/
/* ==================================================
✅ 顶部渐变 Header 样式(保持原样)
================================================== */
.pg-header {
width: 100%;
background: linear-gradient(180deg, #e9f4ff 0%, #ffffff 80%);
padding: 50px 0 60px;
text-align: center;
border-radius: 0 0 22px 22px;
box-shadow: none !important;
margin-bottom: 30px;
}
.pg-header__inner {
max-width: 900px;
margin: 0 auto;
}
/* ✅ LOGO 去死框 */
.pg-header__logo {
background: none !important;
padding: 0 !important;
margin-bottom: 18px;
border-radius: 0 !important;
box-shadow: none !important;
display: inline-block !important;
}
/* ✅ 防止图片被 VE 限制 */
.pg-logo-img {
display: inline-block !important;
margin: 0 !important;
max-width: none !important;
}
/* ==================================================
✅ 核心导航
================================================== */
.pg-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
gap: 20px;
max-width: 1100px;
margin: 20px auto;
padding: 0 15px;
}
.pg-card {
background: #ffffff;
padding: 20px 18px;
border-radius: 20px;
box-shadow: 0 4px 14px rgba(0,0,0,0.06);
text-align: center;
transition: .25s ease;
}
.pg-card:hover {
transform: translateY(-6px);
box-shadow: 0 10px 32px rgba(0,0,0,0.12);
}
.pg-card__icon { font-size: 32px; }
.pg-card__title { font-size: 20px; font-weight: 800; color: #185480; }
.pg-card__desc { margin-top: 6px; color: #67727e; font-size: 14.8px; }
.pg-card__link { margin-top: 10px; color: #007bba !important; font-weight: 700; }
/* ==================================================
✅ 新番推荐(封面卡片)
================================================== */
.pg-gallery {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
gap: 20px;
max-width: 1100px;
margin: 25px auto;
padding: 0 15px;
}
.pg-cover-img {
border-radius: 16px !important;
transition: .25s ease;
max-width: none !important;
}
.pg-cover-img:hover {
transform: scale(1.04);
box-shadow: 0 8px 22px rgba(0,0,0,0.15);
}
.pg-cover__title {
text-align: center;
margin-top: 8px;
font-weight: 700;
color: #2d3e50;
}
/* ==================================================
✅ 关于本站
================================================== */
.pg-about {
max-width: 900px;
margin: 30px auto 60px;
padding: 20px 10px;
color: #333;
font-size: 16px;
line-height: 1.9;
}
/* ==================================================
✅ ✅ ✅ 首页白背景大框 — 最终彻底清除
Vector-2022 会给首页套 3 层白壳(body→content→mw-body)
下面代码逐一击破
================================================== */
/* ✅ 第 1 层:外层 page-container */
body.page-Main_Page .vector-page-container {
background: transparent !important;
border: none !important;
box-shadow: none !important;
padding: 0 !important;
margin: 0 !important;
}
/* ✅ 第 2 层:content 容器 */
body.page-Main_Page #content,
body.page-Main_Page .vector-main-container {
background: transparent !important;
border: none !important;
box-shadow: none !important;
padding: 0 !important;
margin: 0 !important;
border-radius: 0 !important;
}
/* ✅ 第 3 层:mw-body / vector-body */
body.page-Main_Page .mw-body,
body.page-Main_Page .mw-body-content,
body.page-Main_Page .vector-body {
background: transparent !important;
border: none !important;
box-shadow: none !important;
padding: 0 !important;
margin: 0 !important;
border-radius: 0 !important;
}
/* ==================================================
✅ 首页取消自动图片框(不影响文章)
================================================== */
body.page-Main_Page figure,
body.page-Main_Page .thumb,
body.page-Main_Page .thumbinner,
body.page-Main_Page .mw-file-element,
body.page-Main_Page .tleft,
body.page-Main_Page .tright,
body.page-Main_Page .mw-halign-left,
body.page-Main_Page .mw-halign-right {
display: none !important;
}
/* ✅ 首页不把第一段当成 pre */
body.page-Main_Page pre {
white-space: normal !important;
background: transparent !important;
padding: 0 !important;
border: none !important;
}