The editors' meeting has been canceled for technical reasons.

Template:Tabs/styles.css:修订间差异

跳转到导航 跳转到搜索
无编辑摘要
标签已被回退
无编辑摘要
标签已被回退
第1行: 第1行:
/* 标签容器整体样式 */
/* Module:Tabs/styles.css */
.tabs-container {
    font-family: Arial, sans-serif;
    margin: 20px;
}


/* 标签按钮样式 */
/* 默认样式(Lila) */
.tabs-buttons {
.mcBoto {
     display: flex;
    background-color: #d0b0ff;
     border-bottom: 2px solid #ccc;
     border: 0.15em solid #000000;
     margin-bottom: 10px;
     border-color: #f0d0ff #b090e0 #9070c0 #f0d0ff;
    cursor: pointer;
    display: inline;
     margin-right: 0.1em;
    padding: 0.2em 0.3em;
    position: relative;
    font-size: 90%;
    font-weight: bold;
    color: #7050a0;
}
}


.tab-button {
.mcBotoSel {
    background-color: #9070c0;
    border: 0.15em solid #000000;
    border-color: #b090e0 #7050a0 #9070c0 #b090e0;
    cursor: default;
    display: inline;
    margin-right: 0.1em;
    padding: 0.2em 0.3em;
     position: relative;
     position: relative;
    font-size: 90%;
    font-weight: bold;
    color: white;
}
}


.tab-button input[type="radio"] {
.mcContingut {
     display: none;
    background-color: #f8f8ff;
    border: 0.2em solid #9070c0;
    border-color: #9070c0 #7050a0 #7050a0 #9070c0;
    padding: 1em;
     position: static;
}
}


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


.tab-button label:hover {
/* 绿色(Verd) */
     background-color: #e0e0ff;
.mcVerd .mcBoto {
     color: #000;
    background-color: #a5e085;
     border-color: #c0f090 #90d060 #75c045 #c0f090;
     color: #60b030;
}
}


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


/* 标签内容样式 */
.mcVerd .mcContingut {
.tabs-contents {
     background-color: #f5fffa;
     border: 1px solid #ccc;
     border-color: #75c045 #60b030 #60b030 #75c045;
     background-color: #f8f8ff;
    padding: 20px;
}
}


.tab-content {
.mcVerd .mcPestanya {
     display: none;
    background-color: #f5fffa;
     border-color: #60b030 #90d060 #90d060 #60b030;
}
}


.tab-button input[type="radio"]:checked ~ .tabs-contents .tab-content {
/* 其他颜色配置(如Vermell、Blau、Groc、Taronja等)类似定义,完整代码应包含所有样式 */
    display: block;
}