模块:Infobox/styles.css

来自Age Of History 2 Chinese Wiki
ZAN热评留言 | 贡献2025年6月13日 (五) 13:43的版本 (创建页面,内容为“Template:Infobox基础样式:​ .infobox-subbox { padding: 0; border: none; margin: -3px; width: auto; min-width: 100%; font-size: 100%; clear: none; float: none; background-color: transparent; } .infobox-3cols-child { margin: auto; } .infobox .navbar { font-size: 100%; } 深色主题支持:​ @media screen { html.skin-theme-clientpref-night .infobox-full-data:not(.notheme) > div:not(.notheme)[style] {…”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳转至:导航、​搜索
0.00
(0票)
/* Template:Infobox基础样式 */
.infobox-subbox {
    padding: 0;
    border: none;
    margin: -3px;
    width: auto;
    min-width: 100%;
    font-size: 100%;
    clear: none;
    float: none;
    background-color: transparent;
}

.infobox-3cols-child {
    margin: auto;
}

.infobox .navbar {
    font-size: 100%;
} 

/* 深色主题支持 */
@media screen {
    html.skin-theme-clientpref-night .infobox-full-data:not(.notheme) > div:not(.notheme)[style] {
        background: #1f1f23 !important;
        color: #f8f9fa;
    }
}

@media screen and (prefers-color-scheme: dark) {
    html.skin-theme-clientpref-os .infobox-full-data:not(.notheme) div:not(.notheme) {
        background: #1f1f23 !important;
        color: #f8f9fa;
    }
} 

/* 响应式设计支持 */
@media (min-width: 640px) {
    body.skin--responsive .infobox-table {
        display: table !important;
    }
    
    body.skin--responsive .infobox-table > caption {
        display: table-caption !important;
    }
    
    body.skin--responsive .infobox-table > tbody {
        display: table-row-group;
    }
    
    body.skin--responsive .infobox-table tr {
        display: table-row !important;
    }
    
    body.skin--responsive .infobox-table th,
    body.skin--responsive .infobox-table td {
        padding-left: inherit;
        padding-right: inherit;
    }
}
Loading comments...