The editors' meeting has been canceled for technical reasons.

Template:Tabs/styles.css

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

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

.tab-button {
    position: relative;
}

.tab-button input[type="radio"] {
    display: none;
}

.tab-button label {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    background-color: #f8f8ff;
    border: 1px solid #ccc;
    border-bottom: none;
    transition: background-color 0.3s, color 0.3s;
}

.tab-button label:hover {
    background-color: #e0e0ff;
    color: #000;
}

/* 选中的标签按钮高亮 */
.tab-button input[type="radio"]:checked + label {
    background-color: #0078d7;
    color: white;
    border-bottom: 2px solid #0078d7;
}

/* 标签内容样式 */
.tabs-contents {
    border: 1px solid #ccc;
    background-color: #f8f8ff;
    padding: 20px;
}

.tab-content {
    display: none;
}

.tab-button input[type="radio"]:checked ~ .tabs-contents .tab-content {
    display: block;
}