added equipo by student

This commit is contained in:
2026-01-21 17:10:17 -06:00
parent b02338815f
commit ed94d2c180
9 changed files with 301 additions and 42 deletions
+73
View File
@@ -160,6 +160,79 @@ input[type="checkbox"] {
min-width: 3rem;
}
.radio-grid {
display: flex;
gap: 2rem;
margin: 1rem 0;
}
.radio-card {
display: flex;
align-items: center;
gap: 1rem;
padding: 1.2rem 1.8rem;
border-radius: 12px;
border: 2px solid #e5e7eb;
cursor: pointer;
background: #fff;
transition: all 0.25s ease;
font-size: 1.4rem;
font-weight: 500;
}
.radio-card:hover {
border-color: #002b7f;
background: rgba(0, 43, 127, 0.05);
}
.radio-card input {
display: none;
}
.radio-ui {
width: 22px;
height: 22px;
border: 2px solid #002b7f;
border-radius: 50%;
position: relative;
flex-shrink: 0;
}
.radio-ui::after {
content: "";
width: 10px;
height: 10px;
background: #c9a227;
border-radius: 50%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
opacity: 0;
transition: opacity 0.2s ease;
}
.radio-card input:checked + .radio-ui::after {
opacity: 1;
}
.radio-card input:checked ~ .radio-text {
color: #002b7f;
font-weight: 600;
}
.radio-card input:checked {
+ .radio-ui {
border-color: #002b7f;
}
}
@media (max-width: 640px) {
.radio-grid {
flex-direction: column;
}
}
label {
font-size: 1.5rem;
font-weight: bold;