galaxy/Checkboxes/cssbuttons-io_short-shrimp-54.html

90 lines
1.3 KiB
HTML

<div class="cntr">
<input checked="" type="checkbox" id="cbx" class="hidden-xs-up">
<label for="cbx" class="cbx"></label>
</div>
<style>
/* From Uiverse.io by cssbuttons-io - Tags: checkbox, squishy */
.cbx {
position: relative;
top: 1px;
width: 27px;
height: 27px;
border: 1px solid #c8ccd4;
border-radius: 3px;
vertical-align: middle;
transition: background 0.1s ease;
cursor: pointer;
display: block;
}
.cbx:after {
content: '';
position: absolute;
top: 2px;
left: 8px;
width: 7px;
height: 14px;
opacity: 0;
transform: rotate(45deg) scale(0);
border-right: 2px solid #fff;
border-bottom: 2px solid #fff;
transition: all 0.3s ease;
transition-delay: 0.15s;
}
.lbl {
margin-left: 5px;
vertical-align: middle;
cursor: pointer;
}
#cbx:checked ~ .cbx {
border-color: transparent;
background: #6871f1;
animation: jelly 0.6s ease;
}
#cbx:checked ~ .cbx:after {
opacity: 1;
transform: rotate(45deg) scale(1);
}
.cntr {
position: relative;
}
@keyframes jelly {
from {
transform: scale(1, 1);
}
30% {
transform: scale(1.25, 0.75);
}
40% {
transform: scale(0.75, 1.25);
}
50% {
transform: scale(1.15, 0.85);
}
65% {
transform: scale(0.95, 1.05);
}
75% {
transform: scale(1.05, 0.95);
}
to {
transform: scale(1, 1);
}
}
.hidden-xs-up {
display: none!important;
}
</style>