mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
51 lines
1,008 B
HTML
51 lines
1,008 B
HTML
<div class="check_container">
|
|
<input id="checkbox" class="hidden" type="checkbox">
|
|
<label class="checkbox" for="checkbox"></label>
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by Cornerstone-04 - Tags: checkbox, circle */
|
|
.check_container {
|
|
position: relative;
|
|
}
|
|
|
|
.checkbox {
|
|
position: relative;
|
|
top: 1px;
|
|
width: 30px;
|
|
height: 30px;
|
|
border: 2px solid #212fab;
|
|
border-radius: 50px;
|
|
cursor: pointer;
|
|
display: block;
|
|
transition: all 0.3s linear;
|
|
}
|
|
|
|
.checkbox::after {
|
|
content: "";
|
|
position: absolute;
|
|
top: 25%;
|
|
left: 20%;
|
|
width: 6px;
|
|
height: 12px;
|
|
opacity: 0;
|
|
transform: rotate(45deg) scale(0) translate(-50%, -50%);
|
|
border-right: 4px solid #ffffff;
|
|
border-bottom: 4px solid #ffffff;
|
|
transition: all 0.3s linear;
|
|
}
|
|
|
|
#checkbox:checked ~ .checkbox::after {
|
|
opacity: 1 !important;
|
|
transform: rotate(50deg) scale(1) translate(20%, -25%) !important;
|
|
}
|
|
|
|
#checkbox:checked ~ .checkbox {
|
|
background: #212fab;
|
|
border: none;
|
|
}
|
|
|
|
.hidden {
|
|
display: none !important;
|
|
}
|
|
|
|
</style>
|