mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
84 lines
1.9 KiB
HTML
84 lines
1.9 KiB
HTML
<div class="radio-input-wrapper">
|
|
<label class="label">
|
|
<input value="value-2" name="value-radio" id="value-2" class="radio-input" type="radio">
|
|
<div class="radio-design"></div>
|
|
<div class="label-text">Clouds</div>
|
|
</label>
|
|
<label class="label">
|
|
<input value="value-3" name="value-radio" id="value-3" class="radio-input" type="radio">
|
|
<div class="radio-design"></div>
|
|
<div class="label-text">Earth</div>
|
|
</label>
|
|
<label class="label">
|
|
<input value="value-4" name="value-radio" id="value-4" class="radio-input" type="radio">
|
|
<div class="radio-design"></div>
|
|
<div class="label-text">Water</div>
|
|
</label>
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by vk-uiux - Source: https://codepen.io/AbubakerSaeed/pen/MWaEqJP - Tags: list, gradient, card, radio, animated, radio-buttons, html, css, hover effect, css effect */
|
|
/* MAIN */
|
|
/* =============================================== */
|
|
.label {
|
|
display: flex;
|
|
align-items: center;
|
|
border-radius: 100px;
|
|
padding: 14px 16px;
|
|
margin: 5px 0;
|
|
cursor: pointer;
|
|
transition: .3s;
|
|
}
|
|
|
|
.label:hover,
|
|
.label:focus-within,
|
|
.label:active {
|
|
background: hsla(0, 0%, 80%, .14);
|
|
}
|
|
|
|
.radio-input {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
width: 1px;
|
|
height: 1px;
|
|
opacity: 0;
|
|
z-index: -1;
|
|
}
|
|
|
|
.radio-design {
|
|
width: 22px;
|
|
height: 22px;
|
|
border-radius: 100px;
|
|
background: linear-gradient(to right bottom, hsl(154, 97%, 62%), hsl(225, 97%, 62%));
|
|
position: relative;
|
|
}
|
|
|
|
.radio-design::before {
|
|
content: '';
|
|
display: inline-block;
|
|
width: inherit;
|
|
height: inherit;
|
|
border-radius: inherit;
|
|
background: hsl(0, 0%, 90%);
|
|
transform: scale(1.1);
|
|
transition: .3s;
|
|
}
|
|
|
|
.radio-input:checked+.radio-design::before {
|
|
transform: scale(0);
|
|
}
|
|
|
|
.label-text {
|
|
color: hsl(0, 0%, 60%);
|
|
margin-left: 14px;
|
|
letter-spacing: 3px;
|
|
text-transform: uppercase;
|
|
font-size: 18px;
|
|
font-weight: 900;
|
|
transition: .3s;
|
|
}
|
|
|
|
.radio-input:checked~.label-text {
|
|
color: hsl(0, 0%, 40%);
|
|
}
|
|
</style>
|