标签:已被回退 advanced mobile edit mobile web edit mobile edit |
标签:手工回退 advanced mobile edit mobile web edit mobile edit |
| 第1行: |
第1行: |
| /* ===== Home Layout ===== */
| | <!-- Home Container --> |
| | <div class="home"> |
|
| |
|
| .home {
| | <div class="home-grid"> |
| max-width: 1100px;
| |
| margin: 0 auto;
| |
| padding: 24px 16px;
| |
| }
| |
|
| |
|
| .home-grid {
| | <!-- Latest Pages --> |
| display: grid;
| | <section class="home-section"> |
| grid-template-columns: 1fr 1fr;
| | <h2 class="section-title">最新页面</h2> |
| gap: 32px;
| |
| }
| |
|
| |
|
| @media (max-width: 768px) {
| | <div class="latest-list"> |
| .home-grid {
| | {{LatestPages}} |
| grid-template-columns: 1fr;
| | </div> |
| }
| |
| }
| |
|
| |
|
| .home-section {
| | <div class="section-footer"> |
| margin-bottom: 32px;
| | [[Special:NewPages|查看全部 →]] |
| }
| | </div> |
| | </section> |
|
| |
|
| .section-title {
| | <!-- Featured Pages --> |
| font-size: 1.4em;
| | <section class="home-section"> |
| font-weight: 600;
| | <h2 class="section-title">推荐 / 典范条目</h2> |
| margin-bottom: 16px;
| |
| }
| |
|
| |
|
| /* ===== Latest Pages ===== */
| | <div class="featured-list"> |
| | {{FeaturedPages}} |
| | </div> |
|
| |
|
| .latest-list {
| | <div class="section-footer"> |
| border: 1px solid #e5e7eb;
| | [[分类:典范条目|查看全部 →]] |
| border-radius: 8px;
| | </div> |
| overflow: hidden;
| | </section> |
| }
| |
|
| |
|
| .latest-item {
| | </div> |
| padding: 12px 16px; | |
| border-bottom: 1px solid #e5e7eb;
| |
| }
| |
|
| |
|
| .latest-item:last-child {
| | </div> |
| border-bottom: none;
| |
| }
| |
| | |
| .latest-title a {
| |
| text-decoration: none;
| |
| color: #111827;
| |
| font-weight: 500;
| |
| }
| |
| | |
| .latest-title a:hover {
| |
| text-decoration: underline;
| |
| }
| |
| | |
| /* ===== Featured Pages ===== */ | |
| | |
| .featured-list {
| |
| display: flex;
| |
| flex-direction: column;
| |
| gap: 12px;
| |
| }
| |
| | |
| .featured-item {
| |
| padding: 14px 16px;
| |
| border: 1px solid #fde68a;
| |
| border-radius: 8px;
| |
| background: #fffbeb;
| |
| }
| |
| | |
| .featured-title a {
| |
| text-decoration: none;
| |
| color: #92400e;
| |
| font-weight: 600;
| |
| }
| |
| | |
| .featured-title a:hover {
| |
| text-decoration: underline;
| |
| }
| |
| | |
| /* ===== Footer Link ===== */
| |
| | |
| .section-footer {
| |
| margin-top: 12px;
| |
| font-size: 0.9em;
| |
| }
| |