mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
108 lines
3 KiB
HTML
108 lines
3 KiB
HTML
<div class="customCheckBoxHolder">
|
|
|
|
<input class="customCheckBoxInput" id="cCB1" type="checkbox">
|
|
<label class="customCheckBoxWrapper" for="cCB1">
|
|
<div class="customCheckBox">
|
|
<div class="inner">Option</div>
|
|
</div>
|
|
</label>
|
|
|
|
<input class="customCheckBoxInput" id="cCB2" type="checkbox">
|
|
<label class="customCheckBoxWrapper" for="cCB2">
|
|
<div class="customCheckBox">
|
|
<div class="inner">Option</div>
|
|
</div>
|
|
</label>
|
|
|
|
<input class="customCheckBoxInput" id="cCB3" type="checkbox">
|
|
<label class="customCheckBoxWrapper" for="cCB3">
|
|
<div class="customCheckBox">
|
|
<div class="inner">Option</div>
|
|
</div>
|
|
</label>
|
|
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by WhiteNervosa - Tags: radio */
|
|
.customCheckBoxHolder {
|
|
margin: 5px;
|
|
display: flex;
|
|
}
|
|
|
|
.customCheckBox {
|
|
width: fit-content;
|
|
position: relative;
|
|
overflow: hidden;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
padding: 2px 8px;
|
|
background-color: rgba(0, 0, 0, 0.16);
|
|
border-radius: 0px;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
transition-duration: 300ms;
|
|
transition-property: color, background-color, box-shadow;
|
|
display: flex;
|
|
height: 32px;
|
|
align-items: center;
|
|
box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 1px 0px inset, rgba(255, 255, 255, 0.17) 0px 1px 1px 0px;
|
|
outline: none;
|
|
justify-content: center;
|
|
min-width: 55px;
|
|
}
|
|
|
|
.customCheckBox:hover {
|
|
background-color: #2c2c2c;
|
|
color: white;
|
|
box-shadow: rgba(0, 0, 0, 0.23) 0px -4px 1px 0px inset, rgba(255, 255, 255, 0.17) 0px -1px 1px 0px, rgba(0, 0, 0, 0.17) 0px 2px 4px 1px;
|
|
}
|
|
|
|
.customCheckBox .inner {
|
|
font-size: 18px;
|
|
font-weight: 900;
|
|
pointer-events: none;
|
|
transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
transition-duration: 300ms;
|
|
transition-property: transform;
|
|
transform: translateY(0px);
|
|
}
|
|
|
|
.customCheckBox:hover .inner {
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.customCheckBoxWrapper:first-of-type .customCheckBox {
|
|
border-bottom-left-radius: 5px;
|
|
border-top-left-radius: 5px;
|
|
border-right: 0px;
|
|
}
|
|
|
|
.customCheckBoxWrapper:last-of-type .customCheckBox {
|
|
border-bottom-right-radius: 5px;
|
|
border-top-right-radius: 5px;
|
|
border-left: 0px;
|
|
}
|
|
|
|
.customCheckBoxInput {
|
|
display: none;
|
|
}
|
|
|
|
.customCheckBoxInput:checked + .customCheckBoxWrapper .customCheckBox {
|
|
background-color: #2d6737;
|
|
color: white;
|
|
box-shadow: rgba(0, 0, 0, 0.23) 0px -4px 1px 0px inset, rgba(255, 255, 255, 0.17) 0px -1px 1px 0px, rgba(0, 0, 0, 0.17) 0px 2px 4px 1px;
|
|
}
|
|
|
|
.customCheckBoxInput:checked + .customCheckBoxWrapper .customCheckBox .inner {
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.customCheckBoxInput:checked + .customCheckBoxWrapper .customCheckBox:hover {
|
|
background-color: #34723f;
|
|
box-shadow: rgba(0, 0, 0, 0.26) 0px -4px 1px 0px inset, rgba(255, 255, 255, 0.17) 0px -1px 1px 0px, rgba(0, 0, 0, 0.15) 0px 3px 6px 2px;
|
|
}
|
|
|
|
.customCheckBoxWrapper .customCheckBox:hover .inner {
|
|
transform: translateY(-2px);
|
|
}
|
|
</style>
|