「テンプレート:ノルド廃鉱山/styles.css」の版間の差分

提供:メタファー リファンタジオ 攻略Wiki
移動先:案内検索
(ページの作成:「 .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] {…」)
 
編集の要約なし
 
(同じ利用者による、間の3版が非表示)
1行目: 1行目:
/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 700px;
  margin: 0 auto;}


        .tabs {
/*タブのスタイル*/
            position: relative;
.tab_item {
            min-height: 200px;
  width: calc(100%/3);
            clear: both;
  height: 50px;
            margin: 25px 0;
  border-bottom: 3px solid #5ab4bd;
        }
  background-color: #d9d9d9;
        .tab {
  line-height: 50px;
            float: left;
  font-size: 16px;
        }
  text-align: center;
        .tab label {
  color: #565656;
            background: #eee;  
  display: block;
            padding: 10px;  
  float: left;
            border: 1px solid #ccc;  
  text-align: center;
            margin-left: -1px;  
  font-weight: bold;
            position: relative;
  transition: all 0.2s ease;
            left: 1px;
}
            cursor: pointer;
.tab_item:hover {
        }
  opacity: 0.75;
        .tab [type=radio] {
}
            display: none;  
 
        }
/*ラジオボタンを全て消す*/
        .content {
input[name="tab_item"] {
            position: absolute;
  display: none;
            top: 28px;
}
            left: 0;
 
            background: white;
/*タブ切り替えの中身のスタイル*/
            right: 0;
.tab_content {
            bottom: 0;
  display: none;
            padding: 20px;
  padding: 40px 40px 0;
            border: 1px solid #ccc;
  clear: both;
            display: none;
  overflow: hidden;
        }
}
        [type=radio]:checked ~ label {
 
            background: white;
 
            border-bottom: 1px solid white;
/*選択されているタブのコンテンツのみを表示*/
            z-index: 2;
#all:checked ~ #all_content,
        }
#programming:checked ~ #programming_content,
        [type=radio]:checked ~ label ~ .content {
#design:checked ~ #design_content {
            z-index: 1;
  display: block;
            display: block;
}
        }
 
/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #5ab4bd;
  color: #fff;
}

2024年10月9日 (水) 21:12時点における最新版

/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 700px;
  margin: 0 auto;}

/*タブのスタイル*/
.tab_item {
  width: calc(100%/3);
  height: 50px;
  border-bottom: 3px solid #5ab4bd;
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}
.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 40px 40px 0;
  clear: both;
  overflow: hidden;
}


/*選択されているタブのコンテンツのみを表示*/
#all:checked ~ #all_content,
#programming:checked ~ #programming_content,
#design:checked ~ #design_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #5ab4bd;
  color: #fff;
}