Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6402 | Rev 6409 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |

@import '../../../css/shared/variables.scss';

.survey_form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    margin: 0 1rem;
    border: 1px solid $border-primary;
    border-radius: $border-radius;

    h3 {
        color: $subtitle-color;
        font-size: 1.1rem;
        font-weight: 600;
    }
}

.survey_input {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 2px solid $border-primary;
    border-radius: 50px;
    cursor: pointer;
    transition: all 200ms ease;

    input {
        margin: 0 !important;
    }

    label {
        color: $font-color;
        font-weight: 500;
    }

    &:hover {
        border-color: $font-color;
        text-shadow: 0 0 1px $font-color;
    }
}

.disabled {
    background: #9992;
    cursor: not-allowed;

    label {
        color: gray
    }
}