ym-mint-ui
Version:
750px for Mint UI
79 lines (78 loc) • 1.84 kB
CSS
/* Cell Component */
/* Header Component */
/* Button Component */
/* Tab Item Component */
/* Tabbar Component */
/* Navbar Component */
/* Checklist Component */
/* Radio Component */
/* Range Component */
/* z-index */
.mint-checklist .mint-cell {
padding: 0;
}
.mint-checklist.is-limit .mint-checkbox-core:not(:checked) {
background-color: #eee;
border-color: #eee;
}
.mint-checklist-label {
display: block;
padding: 0 20px;
}
.mint-checklist-title {
color: #999;
display: block;
font-size: 24px;
margin: 16px;
}
.mint-checkbox {}
.mint-checkbox.is-right {
float: right;
}
.mint-checkbox-label {
vertical-align: middle;
margin-left: 12px;
}
.mint-checkbox-input {
display: none;
}
.mint-checkbox-input:checked + .mint-checkbox-core {
background-color: #24b1b2;
border-color: #24b1b2;
}
.mint-checkbox-input:checked + .mint-checkbox-core::after {
border-color: #fff;
-webkit-transform: rotate(45deg) scale(1);
transform: rotate(45deg) scale(1);
}
.mint-checkbox-input[disabled] + .mint-checkbox-core {
background-color: #eee;
border-color: #eee;
}
.mint-checkbox-core {
display: inline-block;
background-color: #fff;
border-radius: 100%;
border: 1px solid #ccc;
position: relative;
width: 40px;
height: 40px;
vertical-align: middle;
}
.mint-checkbox-core::after {
border: 4px solid transparent;
border-left: 0;
border-top: 0;
content: " " ;
top: 6px;
left: 12px;
position: absolute;
width: 8px;
height: 16px;
-webkit-transform: rotate(45deg) scale(0);
transform: rotate(45deg) scale(0);
-webkit-transition: -webkit-transform .2s;
transition: -webkit-transform .2s;
transition: transform .2s;
transition: transform .2s, -webkit-transform .2s;
}