@import "../../abstracts/variable";
input[type="checkbox"] {
&:after{
content: '';
display: block;
width: 1rem;
height: 1rem;
margin-top: 0px;
margin-left: -1px;
border: 1px solid transparent;
border-radius: 3px;
background: #d4d7da;
line-height: 1.3;
}
&:checked:after{
width: 1rem;
height: 1rem;
display: block;
content: "\f00c";
font-family: 'FontAwesome';
color: $white;
font-weight: 100;
font-size: 12px;
text-align: center;
border-radius: 3px;
background: #2082FB;
}
}
.form-check-label{
margin-left: 5px;
margin-top: 3px;
}
.form-check-inline {
.form-check-input {
margin-right: 0.625rem;
}
}
|