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.
34 lines
570 B
34 lines
570 B
@import "Bootstrap/variables";
|
|
@import "Bootstrap/mixins";
|
|
|
|
.checkbox-button div {
|
|
display: none;
|
|
}
|
|
|
|
@media only screen {
|
|
.checkbox-button {
|
|
input {
|
|
position: absolute;
|
|
opacity: 0;
|
|
z-index: 5;
|
|
}
|
|
|
|
div {
|
|
display: block;
|
|
}
|
|
|
|
.btn {
|
|
.button-variant(@btn-default-color, @btn-default-bg, @btn-default-border);
|
|
color: #333333;
|
|
}
|
|
|
|
.btn:hover {
|
|
color: #333333;
|
|
}
|
|
|
|
input:first-of-type:checked ~ .btn-primary {
|
|
.button-variant(@btn-primary-color, @btn-primary-bg, @btn-primary-border);
|
|
}
|
|
}
|
|
}
|