Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6094 | Rev 6099 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
6094 stevensc 1
@use "../../settings/mixins.scss";
2
 
3
.knowledge-record-card {
4
    @include mixins.widget;
5
    font-family: 'Roboto';
6
    font-style: normal;
6095 stevensc 7
    padding: 1rem;
8
    display: flex;
9
    flex-direction: column;
10
    gap: .5rem;
6094 stevensc 11
 
12
    &> {
13
        img {
14
            width: 100%;
15
            height: auto;
16
        }
17
 
18
        h2 {
19
            color: $title-color;
20
            font-weight: 800;
21
        }
22
 
23
        h3 {
24
            color: $subtitle-color;
25
            font-weight: 400;
26
        }
27
 
28
        p {
29
            color: $font-color;
30
            font-weight: 400;
31
            text-align: justify;
32
            text-justify: inter-word;
33
        }
34
    }
35
}
36
 
37
.knowledge-record-list {
6095 stevensc 38
    display: grid;
39
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
6094 stevensc 40
    gap: 1rem;
41
}
42
 
43
.knowledge-record-card-actions {
44
    display: flex;
45
    align-items: center;
46
    justify-content: space-between;
47
}
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
 
58
 
59
.knowledge-category-li {
60
    font-family: 'Roboto';
61
    font-style: normal;
62
    font-weight: 400;
63
    font-size: 16px;
64
    line-height: 19px;
65
    display: flex;
66
    align-items: center;
67
 
68
    color: #16283C;
69
    margin-top: 10px;
70
 
71
}
72
 
73
.knowledge-category-li-selected {
74
    background-color: var(--bg-color-secondary);
75
}
76
 
77
.knowledge-add-container {
78
    padding-top: 10px;
79
    padding-bottom: 10px;
80
    text-align: center;
81
}
82
 
83
.knowledge-add-a {
84
    font-family: 'Roboto';
85
    font-style: normal;
86
    font-weight: 400;
87
    font-size: 16px;
88
    line-height: 19px;
89
 
90
 
91
    color: #666666;
92
 
93
}