Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 6095 Rev 6099
Línea 8... Línea 8...
8
    display: flex;
8
    display: flex;
9
    flex-direction: column;
9
    flex-direction: column;
10
    gap: .5rem;
10
    gap: .5rem;
Línea 11... Línea 11...
11
 
11
 
12
    &> {
12
    &> {
13
        img {
13
        a img {
14
            width: 100%;
14
            width: 100%;
15
            height: auto;
15
            height: auto;
Línea 16... Línea 16...
16
        }
16
        }
Línea 30... Línea 30...
30
            font-weight: 400;
30
            font-weight: 400;
31
            text-align: justify;
31
            text-align: justify;
32
            text-justify: inter-word;
32
            text-justify: inter-word;
33
        }
33
        }
34
    }
34
    }
-
 
35
 
-
 
36
    .knowledge-record-card-actions {
-
 
37
        display: flex;
-
 
38
        align-items: center;
-
 
39
        justify-content: space-between;
-
 
40
    }
35
}
41
}
Línea 36... Línea 42...
36
 
42
 
37
.knowledge-record-list {
43
.knowledge-record-list {
38
    display: grid;
44
    display: grid;
39
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
45
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
40
    gap: 1rem;
46
    gap: 1rem;
Línea 41... Línea -...
41
}
-
 
42
 
-
 
43
.knowledge-record-card-actions {
-
 
44
    display: flex;
-
 
45
    align-items: center;
-
 
Línea 46... Línea 47...
46
    justify-content: space-between;
47
}
-
 
48
 
-
 
49
 
47
}
50
.knowledge-category-list {
48
 
-
 
49
.knowledge-category-list {
-
 
50
    width: 100%;
-
 
51
    padding: 25px 20px;
-
 
52
    border: 1px solid var(--border-primary);
-
 
53
    background-color: var(--bg-color);
-
 
54
    text-align: center;
-
 
55
    border-radius: 10px;
-
 
56
}
-
 
57
 
51
    @include mixins.widget;
58
 
52
    padding: 1rem;
59
.knowledge-category-li {
-
 
60
    font-family: 'Roboto';
-
 
61
    font-style: normal;
-
 
62
    font-weight: 400;
-
 
63
    font-size: 16px;
-
 
Línea 64... Línea 53...
64
    line-height: 19px;
53
    width: 100%;
65
    display: flex;
54
    font-family: 'Roboto';
-
 
55
    font-style: normal;
-
 
56
 
Línea 66... Línea 57...
66
    align-items: center;
57
    ul {
-
 
58
        display: flex;
-
 
59
        flex-direction: column;
-
 
60
        gap: .5rem;
Línea 67... Línea 61...
67
 
61
 
68
    color: #16283C;
62
        li {
-
 
63
            font-weight: 400;
-
 
64
            font-size: 16px;
-
 
65
            color: $font-color;
69
    margin-top: 10px;
66
 
Línea 70... Línea 67...
70
 
67
            &.selected {
71
}
68
                background-color: $bg-color-secondary;
72
 
69
            }