galaxy/Checkboxes/aboalsim114_mean-vampirebat-54.html

79 lines
1.6 KiB
HTML

<label class="container">
<input checked="checked" type="checkbox">
<div class="checkmark"></div>
</label>
<style>
/* From Uiverse.io by aboalsim114 - Tags: red, checkbox */
/* Hide the default checkbox */
.container input {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
}
.container {
display: flex;
gap: 10px;
}
/* Create a custom checkbox */
.checkmark {
position: relative;
box-shadow: rgb(255, 84, 0) 0px 0px 0px 2px;
background-color: rgba(16, 16, 16, 0.5);
height: 20px;
width: 20px;
margin-right: 10px;
flex-shrink: 0;
margin-top: -1px;
transition: all 0.2s ease 0s;
cursor: pointer;
transform-origin: 0px 10px;
border-radius: 4px;
margin: -1px 10px 0px 0px;
padding: 0px;
box-sizing: border-box;
}
.container input:checked ~ .checkmark {
box-shadow: rgb(255, 84, 0) 0px 0px 0px 2px;
background-color: rgba(245, 24, 24, 0.5);
height: 20px;
width: 20px;
margin-right: 10px;
flex-shrink: 0;
margin-top: -1px;
transition: all 0.2s ease 0s;
cursor: pointer;
transform-origin: 0px 10px;
border-radius: 4px;
margin: -1px 10px 0px 0px;
padding: 0px;
box-sizing: border-box;
}
.checkmark:after {
content: "";
position: absolute;
display: none;
}
.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);
transition: all 500ms ease-in-out;
}
</style>