打开/关闭菜单
60
73
29
1.1K
武外梗百科
打开/关闭外观设置菜单
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。

MediaWiki:Common.css:修订间差异

MediaWiki界面页面
无编辑摘要
无编辑摘要
第19行: 第19行:
}
}


/* ===== Grid Layout (Like Wikipedia, but cleaner) ===== */
/* ===== Grid Layout (Wikipedia-style) ===== */
.mw-main-grid {
.mw-main-grid {
     display: grid;
     display: grid;
第27行: 第27行:
}
}


/* ===== Left Column Cards ===== */
/* ===== Apple-style clickable cards ===== */
.mw-card {
.mw-card {
    margin-bottom: 24px;
}
.mw-card a {
    display: block;
     background: white;
     background: white;
     padding: 26px;
     padding: 26px;
第38行: 第34行:
     border: 1px solid #e5e5e5;
     border: 1px solid #e5e5e5;
     box-shadow: 0 6px 16px rgba(0,0,0,0.06);
     box-shadow: 0 6px 16px rgba(0,0,0,0.06);
     text-decoration: none;
     margin-bottom: 24px;
     color: #000;
     cursor: pointer;
     transition: all 0.2s ease;
     transition: all 0.25s ease;
}
}
.mw-card a:hover {
.mw-card:hover {
     transform: translateY(-4px);
     transform: translateY(-6px);
     box-shadow: 0 12px 28px rgba(0,0,0,0.1);
     box-shadow: 0 12px 28px rgba(0,0,0,0.10);
     border-color: #d0d0d5;
     border-color: #d0d0d5;
}
}
第58行: 第54行:
}
}


/* ===== Right Column Sections ===== */
/* ===== Right Column ===== */
.mw-section h2 {
.mw-section h2 {
     margin-bottom: 10px;
     margin-bottom: 10px;
第66行: 第62行:
}
}


/* ===== Mobile Adaptation ===== */
/* ===== Mobile ===== */
@media (max-width: 900px) {
@media (max-width: 900px) {
     .mw-main-grid {
     .mw-main-grid {
         grid-template-columns: 1fr;
         grid-template-columns: 1fr;
    }
    .mw-right {
        margin-top: 20px;
     }
     }
}
}