2016-06-23 07:27:43 -04:00
|
|
|
@import "../../colors";
|
|
|
|
@import "../../frameless";
|
|
|
|
|
2016-06-23 15:44:14 -04:00
|
|
|
.row {
|
|
|
|
.checkbox {
|
|
|
|
label {
|
|
|
|
font-weight: 300;
|
|
|
|
}
|
|
|
|
|
2016-06-24 11:19:41 -04:00
|
|
|
input {
|
|
|
|
&[type=checkbox] {
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
margin-right: 1rem;
|
2016-08-05 15:51:48 -04:00
|
|
|
border: 1px solid $active-dark-gray;
|
2016-06-24 11:19:41 -04:00
|
|
|
border-radius: 3px;
|
|
|
|
width: 1.25rem;
|
|
|
|
height: 1.25rem;
|
|
|
|
appearance: none;
|
2016-06-23 07:27:43 -04:00
|
|
|
|
2016-06-24 11:19:41 -04:00
|
|
|
&:checked,
|
|
|
|
&:focus {
|
2016-07-05 11:37:12 -04:00
|
|
|
transition: all .5s ease;
|
2016-06-24 11:19:41 -04:00
|
|
|
outline: none;
|
2016-08-05 15:50:51 -04:00
|
|
|
box-shadow: 0 0 0 .25rem $active-dark-gray;
|
2016-06-24 11:19:41 -04:00
|
|
|
}
|
2016-06-23 07:27:43 -04:00
|
|
|
|
2016-06-24 11:19:41 -04:00
|
|
|
&:checked {
|
|
|
|
background-color: $ui-blue;
|
|
|
|
text-align: center;
|
|
|
|
text-indent: .125rem;
|
|
|
|
line-height: 1.25rem;
|
|
|
|
font-size: .75rem;
|
2016-06-23 07:27:43 -04:00
|
|
|
|
2016-06-24 11:19:41 -04:00
|
|
|
&:after {
|
|
|
|
color: $type-white;
|
|
|
|
content: "\2714";
|
|
|
|
}
|
|
|
|
}
|
2016-06-23 07:27:43 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|