The editors' meeting has been canceled for technical reasons.
Template:Tabs/styles.css:修订间差异
跳转到导航
跳转到搜索
无编辑摘要 标签:已被回退 |
无编辑摘要 标签:已被回退 |
||
第1行: | 第1行: | ||
/* | /* 隐藏所有标签内容 */ | ||
.mcPestanya { | |||
display: none; | display: none; | ||
} | } | ||
/* | /* 默认显示第一个标签内容 */ | ||
. | .mcPestanyaActive { | ||
display: | display: block; | ||
} | } | ||
/* | /* 当标签内容被锚点选择时,显示对应的内容 */ | ||
.mcPestanya:target { | |||
display: block; | display: block; | ||
} | } | ||
第23行: | 第23行: | ||
text-align: center; | text-align: center; | ||
display: inline-block; | display: inline-block; | ||
text-decoration: none; | |||
color: #7050a0; | |||
} | } | ||
/* | /* 选中标签的样式 */ | ||
.mcBotoSel { | |||
font-weight: bold; | |||
background-color: #9070c0; | background-color: #9070c0; | ||
color: white; | color: white; | ||
border: none; | |||
text-decoration: none; | |||
} | |||
.mcBoto:hover { | |||
background-color: #d0b0ff; | |||
text-decoration: none; | |||
} | } | ||
2025年3月1日 (六) 19:14的版本
/* 隐藏所有标签内容 */ .mcPestanya { display: none; } /* 默认显示第一个标签内容 */ .mcPestanyaActive { display: block; } /* 当标签内容被锚点选择时,显示对应的内容 */ .mcPestanya:target { display: block; } /* 标签按钮样式 */ .mcBoto { cursor: pointer; padding: 10px; margin: 5px; border: 1px solid #ccc; background-color: #f9f9f9; text-align: center; display: inline-block; text-decoration: none; color: #7050a0; } /* 选中标签的样式 */ .mcBotoSel { font-weight: bold; background-color: #9070c0; color: white; border: none; text-decoration: none; } .mcBoto:hover { background-color: #d0b0ff; text-decoration: none; } /* 内容容器样式 */ .mcContingut { margin-top: 10px; padding: 10px; border: 1px solid #ccc; background-color: #fff; }