テンプレート:ノルド廃鉱山/styles.css
提供:メタファー リファンタジオ 攻略Wiki
/* タブ付きインターフェースのCSS */
.tabs {
position: relative;
min-height: 200px;
clear: both;
margin: 25px 0;
font-family: Arial, sans-serif;
}
.tab {
float: left;
}
.tab label {
background: #eee;
padding: 10px 15px;
border: 1px solid #ccc;
margin-left: -1px;
position: relative;
left: 1px;
top: -29px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.tab [type=radio] {
display: none;
}
.content {
position: absolute;
top: -1px;
left: 0;
background: white;
right: 0;
bottom: 0;
padding: 20px;
border: 1px solid #ccc;
transition: opacity 0.3s ease-in-out;
opacity: 0;
visibility: hidden;
}
[type=radio]:checked ~ label {
background: white;
border-bottom: 1px solid white;
z-index: 2;
}
[type=radio]:checked ~ label ~ .content {
z-index: 1;
opacity: 1;
visibility: visible;
}
/* タブ内のテーブルスタイル */
.tabs .wikitable {
border-collapse: collapse;
width: 100%;
margin-top: 15px;
}
.tabs .wikitable th,
.tabs .wikitable td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
}
.tabs .wikitable th {
background-color: #f2f2f2;
font-weight: bold;
}
.tabs .wikitable tr:nth-child(even) {
background-color: #f9f9f9;
}
.tabs .wikitable tr:hover {
background-color: #f5f5f5;
}
/* レスポンシブデザイン */
@media screen and (max-width: 768px) {
.tab label {
padding: 8px 10px;
font-size: 14px;
}
.content {
padding: 15px;
}
.tabs .wikitable th,
.tabs .wikitable td {
padding: 6px;
font-size: 14px;
}
}
@media screen and (max-width: 480px) {
.tab label {
padding: 5px 8px;
font-size: 12px;
}
.content {
padding: 10px;
}
.tabs .wikitable th,
.tabs .wikitable td {
padding: 4px;
font-size: 12px;
}
}