mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
57 lines
1.2 KiB
HTML
57 lines
1.2 KiB
HTML
<div class="radio-buttons">
|
|
<label>
|
|
<input type="radio" name="option" value="1" checked="">
|
|
<span class="option">Option 1</span>
|
|
</label>
|
|
<label>
|
|
<input type="radio" name="option" value="2">
|
|
<span class="option">Option 2</span>
|
|
</label>
|
|
<label>
|
|
<input type="radio" name="option" value="3">
|
|
<span class="option">Option 3</span>
|
|
</label>
|
|
</div>
|
|
|
|
<style>
|
|
/* From Uiverse.io by NlghtM4re - Tags: radio */
|
|
.radio-buttons {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: rgb(164, 215, 246);
|
|
border-radius: 15px;
|
|
box-shadow: rgb(71, 175, 239) 0px 5px 29px 5px;
|
|
}
|
|
|
|
.radio-buttons label {
|
|
position: relative;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.radio-buttons input[type="radio"] {
|
|
position: absolute;
|
|
opacity: 0;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.option {
|
|
position: relative;
|
|
display: inline-block;
|
|
padding-top: 10px;
|
|
padding-bottom: 10px;
|
|
border: none;
|
|
color: black;
|
|
border-radius: 14px;
|
|
padding: 10px;
|
|
}
|
|
|
|
.option:hover {
|
|
background-color: rgb(137, 207, 251);
|
|
}
|
|
|
|
.radio-buttons input[type="radio"]:checked + .option {
|
|
background-color: rgb(71, 175, 239);
|
|
box-shadow: rgb(11, 70, 107) 0px 5px 29px 5px;
|
|
}
|
|
</style>
|