テンプレート:ノルド廃鉱山/styles.css

提供:メタファー リファンタジオ 攻略Wiki
2024年10月9日 (水) 20:39時点におけるWiki01 (トーク | 投稿記録)による版 (ページの作成:「 .tabs { position: relative; min-height: 200px; clear: both; margin: 25px 0; } .tab { float: left; } .tab label { background: #eee; padding: 10px; border: 1px solid #ccc; margin-left: -1px; position: relative; left: 1px; cursor: pointer; } .tab [type=radio] {…」)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
移動先:案内検索
        .tabs {
            position: relative;
            min-height: 200px;
            clear: both;
            margin: 25px 0;
        }
        .tab {
            float: left;
        }
        .tab label {
            background: #eee; 
            padding: 10px; 
            border: 1px solid #ccc; 
            margin-left: -1px; 
            position: relative;
            left: 1px; 
            cursor: pointer;
        }
        .tab [type=radio] {
            display: none;   
        }
        .content {
            position: absolute;
            top: 28px;
            left: 0;
            background: white;
            right: 0;
            bottom: 0;
            padding: 20px;
            border: 1px solid #ccc; 
            display: none;
        }
        [type=radio]:checked ~ label {
            background: white;
            border-bottom: 1px solid white;
            z-index: 2;
        }
        [type=radio]:checked ~ label ~ .content {
            z-index: 1;
            display: block;
        }