コンテンツにスキップ

現在、全3219曲を聴きながらリンク集を作成中のサグラダ・ファミリア サイトです。
情報の誤りやお問い合わせは、管理人 X までお寄せください。
✨ オススメのプレイリストやセトリを教えて下さい ✨

「MediaWiki:Common.css」の版間の差分

今日も推しが尊いですね。― ハロプロ・サブスク非公式リンク集
編集の要約なし
編集の要約なし
 
(同じ利用者による、間の14版が非表示)
1行目: 1行目:
/* ロゴ全体(リンク部分も含む)を強制的にコントロール */
/* --- 1. Googleがロゴの前に割り込ませる「巨大な箱」を完全消去 --- */
.mw-logo {
.google-auto-placed,
     display: flex !important;
.vector-header-start > .google-auto-placed {
     align-items: center !important;
     display: none !important;
    height: 0 !important;
     margin: 0 !important;
    padding: 0 !important;
}
}


/* ロゴ画像そのもの */
/* --- 2. PC版(1000px以上)のロゴサイズを200pxに固定 --- */
.mw-logo-wordmark, .mw-logo-icon, .mw-logo img {
@media screen and (min-width: 1000px) {
    height: 40px !important; /* PCでのサイズ */
    /* ロゴの外枠 */
    width: auto !important;
    .vector-header-start {
        height: 200px !important; /* ここでヘッダーの高さを確保 */
    }
 
    .mw-logo, .vector-logo {
        width: 200px !important;
        height: 200px !important;
        max-width: 200px !important;
    }
 
    /* ロゴ画像そのもの */
    .mw-logo-icon, .mw-logo-wordmark, .mw-wiki-logo {
        width: 200px !important;
        height: 200px !important;
        max-width: 200px !important;
        background-size: contain !important;
    }
}
}


/* スマホ表示 */
/* --- 3. モバイル版(999px以下)のロゴを100pxに固定 --- */
@media screen and (max-width: 720px) {
@media screen and (max-width: 999px) {
     .mw-logo-wordmark, .mw-logo-icon, .mw-logo img {
     .mw-logo, .vector-logo, .mw-logo-icon, .mw-logo-wordmark {
         height: 25px !important; /* スマホではこれくらい小さく! */
        width: 100px !important;
         height: 100px !important;
        max-width: 100px !important;
        background-size: contain !important;
     }
     }
}
}


/* --- ロゴの表示サイズ最適化 --- */
/* --- 4. 念のため広告が被らないようにヘッダーを最前面へ --- */
.vector-header-container {
    z-index: 1000 !important;
    background: white !important;
}
#siteSub { display: inline !important; }
 
/* --- YouTubeをレスポンシブにする --- */


/* 1. PC用の設定(画面が広いとき) */
.video-container {
.mw-logo-wordmark {
position: relative;
    height: 40px !important; /* PCでは高さを40pxに固定して見やすく */
padding-bottom: 56.25%;
    width: auto !important;
height: 0;
    max-width: none !important;
overflow: hidden;
margin-bottom: 20px;
}
}


/* 2. スマホ用の設定(画面幅が720px以下のとき) */
.video-container iframe {
@media screen and (max-width: 720px) {
position: absolute;
    .mw-logo-wordmark {
top: 0;
        height: 28px !important; /* スマホでは高さを抑えて検索窓を避ける */
left: 0;
        width: auto !important;
width: 100% !important;
        max-width: 150px !important; /* 横幅も制限してコンパクトに */
height: 100% !important;
    }
border: 0;
}
}

2026年2月27日 (金) 23:45時点における最新版

/* --- 1. Googleがロゴの前に割り込ませる「巨大な箱」を完全消去 --- */
.google-auto-placed, 
.vector-header-start > .google-auto-placed {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* --- 2. PC版(1000px以上)のロゴサイズを200pxに固定 --- */
@media screen and (min-width: 1000px) {
    /* ロゴの外枠 */
    .vector-header-start {
        height: 200px !important; /* ここでヘッダーの高さを確保 */
    }

    .mw-logo, .vector-logo {
        width: 200px !important;
        height: 200px !important;
        max-width: 200px !important;
    }

    /* ロゴ画像そのもの */
    .mw-logo-icon, .mw-logo-wordmark, .mw-wiki-logo {
        width: 200px !important;
        height: 200px !important;
        max-width: 200px !important;
        background-size: contain !important;
    }
}

/* --- 3. モバイル版(999px以下)のロゴを100pxに固定 --- */
@media screen and (max-width: 999px) {
    .mw-logo, .vector-logo, .mw-logo-icon, .mw-logo-wordmark {
        width: 100px !important;
        height: 100px !important;
        max-width: 100px !important;
        background-size: contain !important;
    }
}

/* --- 4. 念のため広告が被らないようにヘッダーを最前面へ --- */
.vector-header-container {
    z-index: 1000 !important;
    background: white !important;
}
#siteSub { display: inline !important; }

/* --- YouTubeをレスポンシブにする --- */

.video-container {
position: relative;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
margin-bottom: 20px;
}

.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height: 100% !important;
border: 0;
}