mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
80 lines
1.8 KiB
HTML
80 lines
1.8 KiB
HTML
<div class="container">
|
|
<div class="custom-radio">
|
|
<input type="radio" id="radio-1" name="tabs" checked="">
|
|
<label class="radio-label" for="radio-1">
|
|
<div class="radio-circle"></div>
|
|
<span class="radio-text">Option 1</span>
|
|
</label>
|
|
<input type="radio" id="radio-2" name="tabs">
|
|
<label class="radio-label" for="radio-2">
|
|
<div class="radio-circle"></div>
|
|
<span class="radio-text">Option 2</span>
|
|
</label>
|
|
<input type="radio" id="radio-3" name="tabs">
|
|
<label class="radio-label" for="radio-3">
|
|
<div class="radio-circle"></div>
|
|
<span class="radio-text">Option 3</span>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<style>
|
|
/* From Uiverse.io by ozgeozkaraa01 - Tags: button, radio, hover button */
|
|
.container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: #f2f2f2;
|
|
}
|
|
|
|
.custom-radio {
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: #fff;
|
|
border-radius: 10px;
|
|
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.custom-radio input[type="radio"] {
|
|
display: none;
|
|
}
|
|
|
|
.radio-label {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 10px 20px;
|
|
cursor: pointer;
|
|
transition: background-color 0.3s ease-in-out;
|
|
}
|
|
|
|
.radio-circle {
|
|
width: 20px;
|
|
height: 20px;
|
|
border: 2px solid #ffcc00;
|
|
border-radius: 50%;
|
|
margin-right: 10px;
|
|
transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
|
|
}
|
|
|
|
.radio-text {
|
|
font-size: 1rem;
|
|
color: #333;
|
|
transition: color 0.3s ease-in-out;
|
|
}
|
|
|
|
.custom-radio input[type="radio"]:checked + .radio-label {
|
|
background-color: #ffcc00;
|
|
}
|
|
|
|
.custom-radio input[type="radio"]:checked + .radio-label .radio-circle {
|
|
border-color: #fff;
|
|
background-color: #ffcc00;
|
|
}
|
|
|
|
.custom-radio input[type="radio"]:checked + .radio-label .radio-text {
|
|
color: #64748b;
|
|
}
|
|
|
|
</style>
|