MediaWiki:Common.css:修订间差异
来自勿忘草与永远的少女
跳到导航跳到搜索
无编辑摘要 |
无编辑摘要 |
||
| 第1行: | 第1行: | ||
/* | /* 首页样式 - 适配MediaWiki 1.42.7 */ | ||
. | .wiki-homepage { | ||
margin: 0 | font-family: sans-serif; | ||
padding: | max-width: 1200px; | ||
margin: 0 auto; | |||
padding: 1rem; | |||
} | } | ||
.home-section { | |||
background: #f9f9f9; | |||
border: 1px solid #ddd; | |||
background: | |||
border-radius: 8px; | border-radius: 8px; | ||
margin-bottom: 2rem; | |||
padding: 1rem; | |||
box-shadow: 0 1px 3px rgba(0,0,0,0.05); | |||
} | } | ||
.home-section h2 { | |||
. | font-size: 1.5rem; | ||
font-size: | border-bottom: 2px solid #c00; | ||
margin-top: 0; | |||
margin- | padding-bottom: 0.25rem; | ||
padding-bottom: | display: inline-block; | ||
display: | |||
} | } | ||
.countdown { | |||
font-family: monospace; | |||
font-size: 1.2rem; | |||
background: #2c3e50; | |||
color: #ecf0f1; | |||
padding: 0.2rem 0.5rem; | |||
border-radius: 4px; | |||
display: inline-block; | display: inline-block; | ||
} | } | ||
.wiki-stats { | |||
font-size: 0.9rem; | |||
font-size: | color: #555; | ||
margin-top: 0.5rem; | |||
color: # | |||
margin: | |||
} | } | ||
.group-link { | |||
background: #c00; | |||
color: white; | |||
padding: 0.2rem 0.8rem; | |||
border-radius: 20px; | |||
. | |||
text-decoration: none; | text-decoration: none; | ||
display: inline-block; | |||
} | } | ||
.group-link:hover { | |||
background: #a00; | |||
color: white; | color: white; | ||
} | } | ||
/* 响应式布局 */ | |||
. | .activity-grid { | ||
display: flex; | display: flex; | ||
gap: | flex-wrap: wrap; | ||
gap: 1rem; | |||
margin-top: 1rem; | |||
} | } | ||
.activity-card { | |||
flex: 1; | |||
min-width: 200px; | |||
background: white; | |||
border: 1px solid #eee; | |||
border-radius: 6px; | |||
padding: 0.8rem; | |||
border-radius: | |||
} | } | ||
@media (max-width: 768px) { | |||
.activity-grid { | |||
@media ( | flex-direction: column; | ||
. | |||
} | } | ||
} | } | ||
2026年3月26日 (四) 22:49的版本
/* 首页样式 - 适配MediaWiki 1.42.7 */
.wiki-homepage {
font-family: sans-serif;
max-width: 1200px;
margin: 0 auto;
padding: 1rem;
}
.home-section {
background: #f9f9f9;
border: 1px solid #ddd;
border-radius: 8px;
margin-bottom: 2rem;
padding: 1rem;
box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.home-section h2 {
font-size: 1.5rem;
border-bottom: 2px solid #c00;
margin-top: 0;
padding-bottom: 0.25rem;
display: inline-block;
}
.countdown {
font-family: monospace;
font-size: 1.2rem;
background: #2c3e50;
color: #ecf0f1;
padding: 0.2rem 0.5rem;
border-radius: 4px;
display: inline-block;
}
.wiki-stats {
font-size: 0.9rem;
color: #555;
margin-top: 0.5rem;
}
.group-link {
background: #c00;
color: white;
padding: 0.2rem 0.8rem;
border-radius: 20px;
text-decoration: none;
display: inline-block;
}
.group-link:hover {
background: #a00;
color: white;
}
/* 响应式布局 */
.activity-grid {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-top: 1rem;
}
.activity-card {
flex: 1;
min-width: 200px;
background: white;
border: 1px solid #eee;
border-radius: 6px;
padding: 0.8rem;
}
@media (max-width: 768px) {
.activity-grid {
flex-direction: column;
}
}