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

无编辑摘要
标签已被回退
无编辑摘要
标签已被回退
第1行: 第1行:
/* 隐藏的单选按钮 */
/* 隐藏所有标签内容 */
input[type="radio"][name^="mc"] {
.mcPestanya {
   display: none;
   display: none;
}
}


/* 默认隐藏所有标签内容 */
/* 默认显示第一个标签内容 */
.mcPestanya {
.mcPestanyaActive {
   display: none;
   display: block;
}
}


/* 当单选按钮被选中时,显示对应的标签内容 */
/* 当标签内容被锚点选择时,显示对应的内容 */
input[type="radio"]:checked + .skin-invert + .mcContingut > .mcPestanya {
.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;
}
}


/* 选中标签按钮样式 */
/* 选中标签的样式 */
input[type="radio"]:checked + .skin-invert > label.mcBoto {
.mcBotoSel {
  font-weight: bold;
   background-color: #9070c0;
   background-color: #9070c0;
   color: white;
   color: white;
   font-weight: bold;
   border: none;
   border-bottom: none;
  text-decoration: none;
}
 
.mcBoto:hover {
   background-color: #d0b0ff;
  text-decoration: none;
}
}