mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
56 lines
946 B
HTML
56 lines
946 B
HTML
<label class="container">
|
|
<input checked="checked" type="checkbox">
|
|
<div class="checkmark">
|
|
<div class="checkmark2"></div>
|
|
</div>
|
|
</label>
|
|
<style>
|
|
/* From Uiverse.io by reshades - Tags: checkbox, clean */
|
|
.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;
|
|
}
|
|
|
|
.checkmark {
|
|
position: relative;
|
|
top: 0;
|
|
left: 0;
|
|
height: 1.3em;
|
|
width: 1.3em;
|
|
background-color: #ffffff00;
|
|
border-radius: 5px;
|
|
border: #fff 1px solid;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.checkmark2 {
|
|
position: relative;
|
|
top: 0.12em;
|
|
left: 0.12em;
|
|
height: 1.0em;
|
|
width: 1.0em;
|
|
background-color: #ffffff00;
|
|
border-radius: 111px;
|
|
border: #fff 1px solid;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.container input:checked ~ .checkmark {
|
|
background-color: #4346ff;
|
|
border: #4346ff 1px solid
|
|
}
|
|
|
|
|
|
|
|
</style>
|