Template:Tabs/styles.css

来自NeuroWiki
Selfice留言 | 贡献2025年3月1日 (六) 19:33的版本
跳转到导航 跳转到搜索
/* 标签容器 */
.tabs-container {
    font-family: Arial, sans-serif;
    margin: 20px;
}

/* 隐藏单选按钮 */
.tabs-container input[type="radio"] {
    display: none;
}

/* 标签按钮样式 */
.tabs-buttons {
    display: flex;
    border-bottom: 2px solid #ccc;
}

.tabs-buttons label {
    background-color: #f8f8ff;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    transition: color 0.3s, border-color 0.3s;
    border-bottom: 2px solid transparent;
}

.tabs-buttons label:hover {
    color: #000;
}

/* 选中的按钮高亮 */
.tabs-container input[type="radio"]:checked + label {
    color: #000;
    border-bottom: 2px solid #0078d7; /* 蓝色高亮 */
}

/* 标签内容样式 */
.tabs-content {
    margin-top: 20px;
}

.tab-panel {
    display: none;
    padding: 20px;
    background-color: #f8f8ff;
    border: 1px solid #ccc;
    border-top: none;
}

/* 显示选中的内容 */
.tabs-container input[type="radio"]:checked ~ .tabs-content .tab-panel {
    display: block;
}