You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
854 B
41 lines
854 B
@import "../css3.less"; |
|
/* === Check Button (OFF) ==*/ |
|
.mblDomButtonCheckboxOff { |
|
position: relative; |
|
width: 30px; |
|
height: 30px; |
|
border-width: 1px; |
|
border-style: outset; |
|
border-color: #a5a2a5; |
|
color: white; |
|
border-radius: 3px; |
|
background-color: #d6d3d6; |
|
.background-linear-gradient-top-bottom(#eff3ef, #bdbebd); |
|
} |
|
.mblDomButtonCheckboxOff > div { |
|
position: absolute; |
|
top: 15px; |
|
left: 3px; |
|
width: 14px; |
|
height: 4px; |
|
margin: 0px; |
|
font-size: 1px; |
|
background-color: #bdbabd; |
|
border-bottom: 1px solid #8c8e8c; |
|
border-radius: 2px; |
|
.transform(rotate(50deg)); |
|
} |
|
.mblDomButtonCheckboxOff > div > div { |
|
position: absolute; |
|
top: -10px; |
|
left: 0px; |
|
width: 20px; |
|
height: 4px; |
|
margin: 0px; |
|
font-size: 1px; |
|
background-color: #bdbabd; |
|
border-bottom: none; |
|
border-top: 1px solid #8c8e8c; |
|
border-radius: 2px; |
|
.transform(rotate(-100deg)); |
|
}
|
|
|