跳转到内容

模板:迷你世界首页2012/styles.css

来自迷你世界维基
常青藤留言 | 贡献2026年2月8日 (日) 14:52的版本 (创建页面,内容为“========================= 基础 =========================:​ 首页不显示红链:​ #mp-2012 .new { color: inherit; } ========================= Banner 主体 =========================:​ #mp-2012-banner { clear: both; display: flex; align-items: center; height: 120px; background: linear-gradient(to bottom, #f8fcff, #eaf3fb); } ========================= Logo(img 方式) =========================:​…”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
/* =========================
   基础
   ========================= */

/* 首页不显示红链 */
#mp-2012 .new {
    color: inherit;
}

/* =========================
   Banner 主体
   ========================= */

#mp-2012-banner {
    clear: both;
    display: flex;
    align-items: center;
    height: 120px;
    background: linear-gradient(to bottom, #f8fcff, #eaf3fb);
}

/* =========================
   Logo(img 方式)
   ========================= */

#mp-2012-banner-logo {
    width: 182px;
    text-align: center;
}

#mp-2012-banner-logo img {
    max-width: 120px;
    height: auto;
}

/* =========================
   标题区
   ========================= */

#mp-2012-banner-title {
    margin-left: 32px;
}

#mp-2012-banner-title > div {
    font-family: sans-serif;
}

#mp-2012-banner-title h1 {
    font-size: 2em;
    margin: 0;
    padding: 0;
    font-weight: normal;
    border: none;
    color: #0645ad;
}

#mp-2012-banner-title p {
    margin: 0;
    padding: 0;
    font-size: 90%;
    color: #54595d;
    line-height: 1.4;
}

/* =========================
   清理
   ========================= */

#mp-2012,
#mp-2012-body {
    clear: both;
}

/* =========================
   手机端适配
   ========================= */

@media all and (max-width: 719px) {

    #mp-2012-banner {
        height: auto;
        flex-direction: column;
        padding: 12px 0;
        text-align: center;
    }

    #mp-2012-banner-logo {
        width: auto;
        margin-bottom: 8px;
    }

    #mp-2012-banner-title {
        margin-left: 0;
    }

    #mp-2012-banner-title h1 {
        font-size: 1.6em;
    }

    #mp-2012-banner-title p {
        font-size: 85%;
    }
}

/* =========================
   深色模式
   ========================= */

html.skin-theme-clientpref-night #mp-2012-banner a {
    filter: invert(1) hue-rotate(180deg);
}

@media (prefers-color-scheme: dark) {
    html.skin-theme-clientpref-os #mp-2012-banner a {
        filter: invert(1) hue-rotate(180deg);
    }
}