galaxy/Checkboxes/gharsh11032000_good-wasp-26.html

68 lines
1.3 KiB
HTML

<label class="container">
<input checked="checked" type="checkbox">
<div class="checkmark"></div>
</label>
<style>
/* From Uiverse.io by gharsh11032000 - Tags: checkbox, shadow, click effect */
/* Hide the default checkbox */
.container input {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
}
.container {
display: block;
position: relative;
cursor: pointer;
font-size: 20px;
user-select: none;
}
/* Create a custom checkbox */
.checkmark {
position: relative;
top: 0;
left: 0;
height: 1.3em;
width: 1.3em;
border: 2px solid #414141;
border-radius: 5px;
transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}
.container input:hover ~ .checkmark {
border: 2px solid #0974f1;
}
/* When the checkbox is checked */
.container input:checked ~ .checkmark {
box-shadow: 0 0 20px rgba(9, 117, 241, 0.8);
border: 2px solid #0974f1;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
content: "";
position: absolute;
display: none;
}
/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
display: block;
}
/* Style the checkmark/indicator */
.container .checkmark:after {
left: 0.45em;
top: 0.25em;
width: 0.25em;
height: 0.5em;
border: solid white;
border-width: 0 0.15em 0.15em 0;
transform: rotate(45deg);
}
</style>