「テンプレート:攻略TOPメニュー/styles.css」の版間の差分

提供:ゼルダの伝説 知恵のかりもの 攻略Wiki
移動先:案内検索
編集の要約なし
編集の要約なし
 
(同じ利用者による、間の12版が非表示)
3行目: 3行目:
     display: flex;
     display: flex;
     flex-wrap: wrap;
     flex-wrap: wrap;
     gap: 20px;
     margin: 10px 0;
   }
   }
   .column {
   .column {
25行目: 25行目:
   .menu-container {
   .menu-container {
     display: flex;
     display: flex;
    justify-content: center;
     flex-wrap: wrap;
     flex-wrap: wrap;
     gap: 5px;
     gap: 5px;
86行目: 87行目:
   box-sizing: border-box;
   box-sizing: border-box;
   list-style: none;
   list-style: none;
  padding: 0;
  margin: 0;
}
}
         /* スライドする要素 */
         /* スライドする要素 */
109行目: 108行目:
             align-items: center;
             align-items: center;
             height: 120px;
             height: 120px;
             width: 420px;
             width:360px;
             margin: auto;
             margin: auto;
         }
         }
135行目: 134行目:
         }
         }
span.btn.btn-default >a {
span.btn.btn-default >a {
     display: block;
     display: flex;
    align-items: center;
    justify-content: center;
     width: 100%;
     width: 100%;
     height: 100%;
     height: 100%;
}
/*カラム折り返し*/
.main_container {
  display: flex;
  flex-wrap: wrap; /* 子要素を折り返すように設定 */
}
.left_column, .right_column {
  flex: 1; /* 幅を均等に分ける */
  min-width: 300px; /* 最小幅を設定してレイアウト崩れを防ぐ */
}
@media (max-width: 768px) { /* 画面幅が768px以下の場合 */
  .left_column, .right_column {
    flex: 100%; /* 横幅を100%にして縦に並べる */
  }
}
div.menu-container > p {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.menu-item {
    background: linear-gradient(to bottom, #ffffff, #f3f9fc);
    box-shadow: 0px 1px 1px 1px #ebebeb;
    border: 2px solid #adbbcb;
    border-radius: 4px;
    text-align: center;
    padding: 6px;
    color: #214b76;
    display: block;
    margin-bottom: 5px;
}
.menu-item {
  cursor: pointer;
}
.menu-link a {
  text-decoration: none;
  color: #214b76; /* リンクの色 */
}
.menu-link > a:hover {
  text-decoration: none;
  color: #2f6cbf; /* ホバー時の背景色変更 */
}
span.menu-item-row-5 { width: calc(20% - 2px); }/*5列*/
span.menu-item-row-4 { width: calc(25% - 2px); }/*4列*/
span.menu-item-row-3 { width: calc(33% - 2px); }/*3列*/
span.menu-item-row-2 { width: calc(50% - 2px); }/*2列*/
span.menu-item-row-1 { width: calc(100% - 2px); }/*1列*/
span.menu-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 5px;
}
span.menu-item-text {
  flex-grow: 1;
  text-align: center;
}
.left_column, .right_column {
  flex: 1; /* 両カラムを均等な幅で表示 */
  min-width: 300px; /* 各カラムの最小幅 */
}
.main_container {
  display: flex;
  justify-content: space-between; /* コンテナ間のスペースを均等に配置 */
  align-items: flex-start; /* コンテンツの上部を揃える */
  gap: 20px; /* 左右のカラム間のスペース */
  width: 100%;
  margin: 0 auto; /* コンテナを中央に配置 */
}
.h3_dq_h {
    font-size: 1em;
    color: #fcfcfc;
    text-shadow: 0 0 10px #3fbbe8, 0 0 3px #3fbbe8, 0 0 1px #3fbbe8;
        background: linear-gradient(#163f6a, #406b97);
    padding: 6px 15px !important;
    margin: 20px 0 15px 0 !important;
    border-radius: 3px;
    font-weight: 700;
    width:100%;
}
h3.h3_dq {
    font-size: 1em;
    color: #fcfcfc;
    text-shadow: 0 0 10px #3fbbe8, 0 0 3px #3fbbe8, 0 0 1px #3fbbe8;
        background: linear-gradient(#163f6a, #406b97);
    padding: 6px 15px !important;
    margin: 20px 0 15px 0 !important;
    border-radius: 3px;
    font-weight: 700;
    width:100%;
}
.menu-container {
    margin: 0 auto;
    width: 97%;
}
span.menu-link img {
    margin: 5px 10px 0 0;
}
}

2024年12月18日 (水) 09:18時点における最新版

  .container {
    display: flex;
    flex-wrap: wrap;
    margin: 10px 0;
  }
  .column {
    flex: 1 1 calc(50% - 10px);
    min-width: 300px;
    box-sizing: border-box;
    padding: 10px;
    border-radius: 8px;
  }
  .h2_blue {
    font-size: 1em;
    color: #fcfcfc;
    text-shadow: 0 0 10px #3fbbe8, 0 0 3px #3fbbe8, 0 0 1px #3fbbe8;
        background: linear-gradient(#163f6a, #406b97);
    padding: 6px 15px !important;
    margin: 20px 0 15px 0 !important;
    border-radius: 3px;
    font-weight: 700;
  }

  .menu-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
  }
  .menulist {
    flex: 0 0 calc(32% - 5px);
    margin-bottom: 3px;
  }
  .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 40px;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    cursor: pointer;
    background-image: none;
    border: 1px solid #ccc !important;
    border-radius: 2px;
    box-sizing: border-box;
  }
  .column2{
    flex: 0 1 100%;
  }
.h2_gray{
    font-size:1em;
    color: #fcfcfc;
    background: linear-gradient(to right, #879294, #c0d5e1);
        padding: 6px 15px !important;
    margin: 0 0 15px 0 !important;
    font-weight: 700;
}
  .h2_blue2_bg {
  }
@media (max-width: 768px) {
    .mw-parser-output .menulist {
        flex: 0 0 calc(31% + 5px);
        margin-bottom: 3px;
    }
}
  @media (max-width: 768px) {
    .column {
      flex: 1 1 100%;
    }
    .menulist {
      flex: 0 0 100%;
    }
  .menulist {
    flex: 0 0 calc(32% - 5px);
    margin-bottom: 3px;
  }
  }
  
/*スライダー*/
* {
  box-sizing: border-box;
  list-style: none;
}
        /* スライドする要素 */
        .content {
            width: 100px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .content img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        /* スライドレールの枠 */
        .wrap {
            overflow: hidden;
            display: flex;
            align-items: center;
            height: 120px;
            width:360px;
            margin: auto;
        }
        /* content4つをまとめたスライドブロック */
        .slideshow {
            display: flex;
            animation: loop-slide 15s infinite linear 1s both;
        }
        @keyframes loop-slide {
            from { transform: translateX(0); }
            to { transform: translateX(-100%); }
        }
        /* タッチデバイスでスクロールを一時停止 */
        .slide-paused:active .slideshow {
            animation-play-state: paused;
        }
        /* タップ時の装飾 */
        .content-hover {
            transition: all 0.2s;
            margin-right: 5px;
        }
        .content-hover:active {
            transform: scale(0.95);
            opacity: 0.8;
        }
span.btn.btn-default >a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
/*カラム折り返し*/
.main_container {
  display: flex;
  flex-wrap: wrap; /* 子要素を折り返すように設定 */
}

.left_column, .right_column {
  flex: 1; /* 幅を均等に分ける */
  min-width: 300px; /* 最小幅を設定してレイアウト崩れを防ぐ */
}

@media (max-width: 768px) { /* 画面幅が768px以下の場合 */
  .left_column, .right_column {
    flex: 100%; /* 横幅を100%にして縦に並べる */
  }
}

div.menu-container > p {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.menu-item {
    background: linear-gradient(to bottom, #ffffff, #f3f9fc);
    box-shadow: 0px 1px 1px 1px #ebebeb;
    border: 2px solid #adbbcb;
    border-radius: 4px;
    text-align: center;
    padding: 6px;
    color: #214b76;
    display: block;
    margin-bottom: 5px;
}

.menu-item {
  cursor: pointer;
}
.menu-link a {
  text-decoration: none;
  color: #214b76; /* リンクの色 */
}
.menu-link > a:hover {
  text-decoration: none;
  color: #2f6cbf; /* ホバー時の背景色変更 */
}


span.menu-item-row-5 { width: calc(20% - 2px); }/*5列*/
span.menu-item-row-4 { width: calc(25% - 2px); }/*4列*/
span.menu-item-row-3 { width: calc(33% - 2px); }/*3列*/
span.menu-item-row-2 { width: calc(50% - 2px); }/*2列*/
span.menu-item-row-1 { width: calc(100% - 2px); }/*1列*/

span.menu-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 5px;
}
span.menu-item-text {
  flex-grow: 1;
  text-align: center;
}
.left_column, .right_column {
  flex: 1; /* 両カラムを均等な幅で表示 */
  min-width: 300px; /* 各カラムの最小幅 */
}
.main_container {
  display: flex;
  justify-content: space-between; /* コンテナ間のスペースを均等に配置 */
  align-items: flex-start; /* コンテンツの上部を揃える */
  gap: 20px; /* 左右のカラム間のスペース */
  width: 100%;
  margin: 0 auto; /* コンテナを中央に配置 */
}
.h3_dq_h {
    font-size: 1em;
    color: #fcfcfc;
    text-shadow: 0 0 10px #3fbbe8, 0 0 3px #3fbbe8, 0 0 1px #3fbbe8;
        background: linear-gradient(#163f6a, #406b97);
    padding: 6px 15px !important;
    margin: 20px 0 15px 0 !important;
    border-radius: 3px;
    font-weight: 700;
    width:100%;
}

h3.h3_dq {
    font-size: 1em;
    color: #fcfcfc;
    text-shadow: 0 0 10px #3fbbe8, 0 0 3px #3fbbe8, 0 0 1px #3fbbe8;
        background: linear-gradient(#163f6a, #406b97);
    padding: 6px 15px !important;
    margin: 20px 0 15px 0 !important;
    border-radius: 3px;
    font-weight: 700;
    width:100%;
}

.menu-container {
    margin: 0 auto;
    width: 97%;
}
span.menu-link img {
    margin: 5px 10px 0 0;
}