Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6439 | Rev 6460 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 6439 Rev 6440
Línea 24... Línea 24...
24
 
24
 
25
        svg {
25
        svg {
26
            font-size: 1rem;
26
            font-size: 1rem;
27
        }
27
        }
28
    }
-
 
29
}
-
 
30
 
-
 
31
.survey_input {
-
 
32
    display: flex;
-
 
33
    align-items: center;
-
 
34
    gap: 0.5rem;
-
 
35
    padding: 0.5rem 1rem;
-
 
36
    margin-bottom: .5rem;
-
 
37
    border: 2px solid $border-primary;
-
 
38
    border-radius: 50px;
-
 
39
    cursor: pointer;
-
 
40
    transition: all 200ms ease;
-
 
41
    position: relative;
-
 
42
 
-
 
43
    input {
-
 
44
        margin: 0 !important;
-
 
45
    }
-
 
46
 
-
 
47
    label {
-
 
48
        color: $font-color;
-
 
49
        font-weight: 500;
-
 
50
    }
-
 
51
 
-
 
52
    &::before {
-
 
53
        content: ' ';
-
 
54
        position: absolute;
-
 
55
        left: 0;
-
 
56
        top: 0;
-
 
57
        height: 100%;
-
 
58
        width: attr(data-width);
-
 
59
        background-color: #0006;
-
 
60
        z-index: 4;
-
 
61
    }
-
 
62
 
-
 
63
    &:hover {
-
 
64
        border-color: $font-color;
-
 
65
        text-shadow: 0 0 1px $font-color;
-
 
66
    }
-
 
67
}
-
 
68
 
-
 
69
.disabled {
-
 
70
    background: #9992;
-
 
71
    cursor: auto;
-
 
72
 
-
 
73
    label {
-
 
74
        color: gray
-
 
75
    }
-
 
76
 
-
 
77
    &:hover {
-
 
78
        border-color: $border-primary;
-
 
79
        text-shadow: none;
-
 
80
    }
28
    }
81
}
29
}