打开/关闭菜单
打开/关闭外观设置菜单
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。

MediaWiki:Common.css:修订间差异

MediaWiki界面页面
删除的内容 添加的内容
XP-jia留言 | 贡献
ds3
标签已被回退
XP-jia留言 | 贡献
ds5
标签已被回退
第11行: 第11行:
line-height: 1.6;
line-height: 1.6;
color: #333;
color: #333;
margin: 0;
padding: 0;
}
}


第38行: 第40行:


/* ===========================
/* ===========================
内容块样式 - 简约版
基础内容块样式 - 简约版
=========================== */
=========================== */
.content-box {
.content-box {
第61行: 第63行:
color: #555;
color: #555;
font-size: 0.95rem;
font-size: 0.95rem;
margin: 0;
margin: 0 0 12px 0;
}
}


第70行: 第72行:


/* ===========================
/* ===========================
新布局样式
布局样式
=========================== */
=========================== */

.section-group {
/* 主要内容区域 */
.content-section {
margin: 20px 0;
}

/* 宽版内容块 */
.wide-box {
width: 100%;
box-sizing: border-box;
}

/* 双栏布局 */
.two-column-section {
display: grid;
display: grid;
grid-template-columns: 2fr 1fr;
grid-template-columns: 1fr 1fr;
gap: 20px;
gap: 20px;
margin: 30px 0;
margin: 20px 0;
align-items: start;
}
}


/* 特色高亮区块 */
.section-group.reverse {
.highlight-box {
grid-template-columns: 1fr 2fr;
background: #f8f9fa;
border-left: 4px solid #2ecc71;
}
}


.featured-card {
.highlight-box h2 {
border-bottom-color: #d5f4e6;
grid-row: span 2;
}
}


/* 导航列布局 */
.card-group {
.nav-container {
display: flex;
display: grid;
flex-direction: column;
grid-template-columns: 1fr 1fr;
gap: 20px;
gap: 20px;
margin-top: 15px;
}
}


.nav-column {
.featured-card .content-box {
height: auto;
padding: 15px;
background: rgba(0,0,0,0.02);
min-height: 300px;
display: flex;
border-radius: 6px;
border: 1px solid #f1f2f6;
flex-direction: column;
justify-content: center;
}
}


.nav-column strong {
.card-group .content-box {
flex: 1;
color: #2c3e50;
min-height: 140px;
margin-bottom: 8px;
display: block;
font-size: 0.95rem;
}
}


/* 三栏内容 */
/* ===========================
.three-column-content {
特殊区域样式 - 简约版
display: grid;
=========================== */
grid-template-columns: 1fr 1fr 1fr;
/* 知识掌握模型区域 */
gap: 20px;
.knowledge-model {
text-align: center;
border-left: 4px solid #3498db;
background: #f8fbfd;
margin-top: 15px;
}
}


.three-column-content > div {
/* 最近更改区域 */
padding: 15px;
.recent-changes {
background: white;
border-left: 4px solid #e74c3c;
border-radius: 6px;
border: 1px solid #e1e5e9;
transition: all 0.2s ease;
}
}


.three-column-content > div:hover {
/* 哲学与思想 */
border-color: #3498db;
.philosophy {
border-left: 4px solid #3498db;
background: #f0f8ff;
}
}


.three-column-content strong {
/* 文学与艺术 */
color: #2c3e50;
.literature {
display: block;
border-left: 4px solid #9b59b6;
margin-bottom: 8px;
background: #faf8ff;
}
}


/* 管理与人文 */
/* 两栏内容 */
.two-column-content {
.management {
display: grid;
border-left: 4px solid #d35400;
grid-template-columns: 1fr 1fr;
background: #fff8f0;
gap: 20px;
margin-top: 15px;
}
}


.two-column-content > div {
/* 技术与数据 */
padding: 15px;
.technology {
background: rgba(0,0,0,0.02);
border-left: 4px solid #2ecc71;
border-radius: 6px;
background: #f0fff8;
border: 1px solid #f1f2f6;
}
}


.two-column-content strong {
/* 工程与实践 */
color: #2c3e50;
.engineering {
display: block;
border-left: 4px solid #e67e22;
margin-bottom: 8px;
background: #fffaf0;
}
}


/* 软件与系统 */
/* 站点链接 */
.software {
.site-links {
display: grid;
border-left: 4px solid #34495e;
grid-template-columns: 1fr 1fr 1fr;
background: #f8f9fa;
gap: 15px;
margin-top: 15px;
text-align: center;
}
}


.site-links > div {
/* 数据与智能 */
padding: 12px;
.data-intelligence {
background: white;
border-left: 4px solid #1abc9c;
border: 1px solid #e1e5e9;
background: #f0fffc;
border-radius: 6px;
transition: all 0.2s ease;
}
}


.site-links > div:hover {
/* 学习与成长 */
border-color: #3498db;
.learning {
}

.site-links strong {
color: #2c3e50;
display: block;
margin-bottom: 6px;
font-size: 0.9rem;
}

/* ===========================
特殊区域样式 - 简约版
=========================== */

/* 知识掌握模型区域 */
.content-section.main-focus .content-box {
border-left: 4px solid #3498db;
background: #f8fbfd;
}

/* 思想与人文区域 */
.two-column-section .content-box:nth-child(1) {
border-left: 4px solid #9b59b6;
}

/* 技术与工程区域 */
.two-column-section .content-box:nth-child(2) {
border-left: 4px solid #e67e22;
}

/* 学习与成长区域 */
.two-column-section:nth-of-type(2) .content-box:nth-child(1) {
border-left: 4px solid #f39c12;
border-left: 4px solid #f39c12;
background: #fffcf0;
}
}


/* 竞赛与创造 */
/* 竞赛与实践区域 */
.two-column-section:nth-of-type(2) .content-box:nth-child(2) {
.competition {
border-left: 4px solid #c0392b;
border-left: 4px solid #c0392b;
background: #fff0f0;
}
}


/* 站点结构 */
/* 管理系统区域 */
.content-box:nth-last-child(3) {
.site-structure {
border-left: 4px solid #34495e;
}

/* 最近更新区域 */
.content-box:nth-last-child(2) {
border-left: 4px solid #e74c3c;
}

/* 站点信息区域 */
.content-box:last-of-type {
border-left: 4px solid #7f8c8d;
border-left: 4px solid #7f8c8d;
background: #f5f5f5;
}
}


第184行: 第250行:
导航框样式 - 简约版
导航框样式 - 简约版
=========================== */
=========================== */
.navbox {
.nav-container {
background: #f8f9fa;
background: #f8f9fa;
border-radius: 6px;
border-radius: 6px;
第192行: 第258行:
}
}


.nav-container a {
.navbox a {
color: #2980b9;
color: #2980b9;
text-decoration: none;
text-decoration: none;
第198行: 第264行:
}
}


.nav-container a:hover {
.navbox a:hover {
color: #1a5276;
color: #1a5276;
text-decoration: underline;
text-decoration: underline;
第204行: 第270行:


/* ===========================
/* ===========================
特殊样式
链接样式
=========================== */
=========================== */
.content-box a {
color: #2980b9;
text-decoration: none;
transition: color 0.2s ease;
}

.content-box a:hover {
color: #1a5276;
text-decoration: underline;
}

.mw-redirect {
.mw-redirect {
color: #27ae60;
color: #27ae60;
font-weight: 500;
}

/* ===========================
工具类
=========================== */
.text-center {
text-align: center;
}

.text-muted {
color: #6c757d;
}

.mb-0 {
margin-bottom: 0;
}

.mt-15 {
margin-top: 15px;
}
}


第216行: 第313行:
/* 平板设备 */
/* 平板设备 */
@media screen and (max-width: 1024px) {
@media screen and (max-width: 1024px) {
.two-column-section {
.section-group,
.section-group.reverse {
grid-template-columns: 1fr;
grid-template-columns: 1fr;
gap: 16px;
}
}
.nav-container,
.featured-card {
.two-column-content {
grid-row: auto;
grid-template-columns: 1fr;
}
}
.three-column-content,
.card-group {
.site-links {
flex-direction: row;
grid-template-columns: 1fr 1fr;
}
}
}
}
第233行: 第330行:
/* 手机设备 */
/* 手机设备 */
@media screen and (max-width: 768px) {
@media screen and (max-width: 768px) {
.flex-container {
.section-group,
.section-group.reverse {
grid-template-columns: 1fr;
grid-template-columns: 1fr;
gap: 16px;
gap: 16px;
}
}

.card-group {
flex-direction: column;
}
.content-box {
.content-box {
padding: 16px;
padding: 16px;
第259行: 第351行:
.banner .english-text {
.banner .english-text {
font-size: 14px;
font-size: 14px;
}
.three-column-content,
.site-links {
grid-template-columns: 1fr;
}
.three-column-content > div,
.site-links > div {
margin-bottom: 10px;
}
.nav-column {
padding: 12px;
}
}
}
}
第276行: 第382行:
}
}
.nav-container,
.featured-card .content-box {
.two-column-content,
min-height: 250px;
.three-column-content,
.site-links {
grid-template-columns: 1fr;
gap: 12px;
}
.nav-column,
.two-column-content > div,
.three-column-content > div,
.site-links > div {
padding: 12px;
}
}

/* ===========================
打印样式
=========================== */
@media print {
.banner {
background: #fff !important;
color: #000 !important;
border: 1px solid #000;
}
.content-box {
border: 1px solid #000;
box-shadow: none !important;
}
.nav-column,
.two-column-content > div,
.three-column-content > div,
.site-links > div {
background: #fff !important;
border: 1px solid #ddd;
}
}
}
}

2025年10月10日 (五) 08:48的版本

/* ===========================
   全局字体设置 - 简约版
=========================== */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, 
               "Noto Sans", "Noto Sans CJK SC", "Noto Sans CJK TC", "Noto Sans JP", 
               "Noto Sans KR", sans-serif, "PingFang SC", "Hiragino Sans GB", 
               "Microsoft YaHei", "WenQuanYi Micro Hei", "SimSun", "SimHei", 
               "Songti SC", "KaiTi", "MingLiU", "PMingLiU", "Microsoft JhengHei", "Malgun Gothic";
  background-color: #f8f9fa;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
}

/* ===========================
   横幅标语样式 - 简约版
=========================== */
.banner {
  background: #2c3e50;
  color: white;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  margin: 20px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.banner .chinese-text {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.banner .english-text {
  font-size: 16px;
  opacity: 0.9;
}

/* ===========================
   基础内容块样式 - 简约版
=========================== */
.content-box {
  margin: 12px 0;
  padding: 20px;
  border-radius: 8px;
  background: white;
  border: 1px solid #e1e5e9;
  transition: all 0.2s ease;
}

.content-box h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #ecf0f1;
}

.content-box p {
  color: #555;
  font-size: 0.95rem;
  margin: 0 0 12px 0;
}

.content-box:hover {
  border-color: #bdc3c7;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* ===========================
   新增布局样式
=========================== */

/* 主要内容区域 */
.content-section {
  margin: 20px 0;
}

/* 宽版内容块 */
.wide-box {
  width: 100%;
  box-sizing: border-box;
}

/* 双栏布局 */
.two-column-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}

/* 特色高亮区块 */
.highlight-box {
  background: #f8f9fa;
  border-left: 4px solid #2ecc71;
}

.highlight-box h2 {
  border-bottom-color: #d5f4e6;
}

/* 导航列布局 */
.nav-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 15px;
}

.nav-column {
  padding: 15px;
  background: rgba(0,0,0,0.02);
  border-radius: 6px;
  border: 1px solid #f1f2f6;
}

.nav-column strong {
  color: #2c3e50;
  margin-bottom: 8px;
  display: block;
  font-size: 0.95rem;
}

/* 三栏内容 */
.three-column-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  text-align: center;
  margin-top: 15px;
}

.three-column-content > div {
  padding: 15px;
  background: white;
  border-radius: 6px;
  border: 1px solid #e1e5e9;
  transition: all 0.2s ease;
}

.three-column-content > div:hover {
  border-color: #3498db;
}

.three-column-content strong {
  color: #2c3e50;
  display: block;
  margin-bottom: 8px;
}

/* 两栏内容 */
.two-column-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 15px;
}

.two-column-content > div {
  padding: 15px;
  background: rgba(0,0,0,0.02);
  border-radius: 6px;
  border: 1px solid #f1f2f6;
}

.two-column-content strong {
  color: #2c3e50;
  display: block;
  margin-bottom: 8px;
}

/* 站点链接 */
.site-links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
  margin-top: 15px;
  text-align: center;
}

.site-links > div {
  padding: 12px;
  background: white;
  border: 1px solid #e1e5e9;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.site-links > div:hover {
  border-color: #3498db;
}

.site-links strong {
  color: #2c3e50;
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

/* ===========================
   特殊区域样式 - 简约版
=========================== */

/* 知识掌握模型区域 */
.content-section.main-focus .content-box {
  border-left: 4px solid #3498db;
  background: #f8fbfd;
}

/* 思想与人文区域 */
.two-column-section .content-box:nth-child(1) {
  border-left: 4px solid #9b59b6;
}

/* 技术与工程区域 */
.two-column-section .content-box:nth-child(2) {
  border-left: 4px solid #e67e22;
}

/* 学习与成长区域 */
.two-column-section:nth-of-type(2) .content-box:nth-child(1) {
  border-left: 4px solid #f39c12;
}

/* 竞赛与实践区域 */
.two-column-section:nth-of-type(2) .content-box:nth-child(2) {
  border-left: 4px solid #c0392b;
}

/* 管理与系统区域 */
.content-box:nth-last-child(3) {
  border-left: 4px solid #34495e;
}

/* 最近更新区域 */
.content-box:nth-last-child(2) {
  border-left: 4px solid #e74c3c;
}

/* 站点信息区域 */
.content-box:last-of-type {
  border-left: 4px solid #7f8c8d;
}

/* ===========================
   导航框样式 - 简约版
=========================== */
.navbox {
  background: #f8f9fa;
  border-radius: 6px;
  padding: 12px;
  margin: 12px 0;
  border: 1px solid #e9ecef;
}

.navbox a {
  color: #2980b9;
  text-decoration: none;
  transition: color 0.2s ease;
}

.navbox a:hover {
  color: #1a5276;
  text-decoration: underline;
}

/* ===========================
   链接样式
=========================== */
.content-box a {
  color: #2980b9;
  text-decoration: none;
  transition: color 0.2s ease;
}

.content-box a:hover {
  color: #1a5276;
  text-decoration: underline;
}

.mw-redirect {
  color: #27ae60;
  font-weight: 500;
}

/* ===========================
   工具类
=========================== */
.text-center {
  text-align: center;
}

.text-muted {
  color: #6c757d;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-15 {
  margin-top: 15px;
}

/* ===========================
   响应式设计 - 简约版
=========================== */

/* 平板设备 */
@media screen and (max-width: 1024px) {
  .two-column-section {
    grid-template-columns: 1fr;
  }
  
  .nav-container,
  .two-column-content {
    grid-template-columns: 1fr;
  }
  
  .three-column-content,
  .site-links {
    grid-template-columns: 1fr 1fr;
  }
}

/* 手机设备 */
@media screen and (max-width: 768px) {
  .flex-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .content-box {
    padding: 16px;
    margin: 8px 0;
  }

  .banner {
    padding: 16px;
    margin: 16px 0;
  }

  .banner .chinese-text {
    font-size: 20px;
  }

  .banner .english-text {
    font-size: 14px;
  }
  
  .three-column-content,
  .site-links {
    grid-template-columns: 1fr;
  }
  
  .three-column-content > div,
  .site-links > div {
    margin-bottom: 10px;
  }
  
  .nav-column {
    padding: 12px;
  }
}

/* 小屏手机设备 */
@media screen and (max-width: 480px) {
  .content-box {
    padding: 14px;
  }

  .content-box h2 {
    font-size: 1.1rem;
  }

  .banner .chinese-text {
    font-size: 18px;
  }
  
  .nav-container,
  .two-column-content,
  .three-column-content,
  .site-links {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .nav-column,
  .two-column-content > div,
  .three-column-content > div,
  .site-links > div {
    padding: 12px;
  }
}

/* ===========================
   打印样式
=========================== */
@media print {
  .banner {
    background: #fff !important;
    color: #000 !important;
    border: 1px solid #000;
  }
  
  .content-box {
    border: 1px solid #000;
    box-shadow: none !important;
  }
  
  .nav-column,
  .two-column-content > div,
  .three-column-content > div,
  .site-links > div {
    background: #fff !important;
    border: 1px solid #ddd;
  }
}