$("#check_all").click(function () {
var t = $(this).parents('.list-group');
t.find('input[type=checkbox]').each(function() {
this.checked = true;
});
});
$("#unchecked_all").click(function () {
var t = $(this).parents('.list-group');
t.find('input[type=checkbox]').each(function() {
this.checked = false;
});
});
@media (max-height: 710px) and (max-width: 1069px) {
.block {
height: 30px;
}
}
@media (max-height: 710px) and (max-width: 700px) {
.block {
height: 50px;
}
}