Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6095 | Ir a la última revisión | | 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
    text-align: center;
6
    width: fit-content;
7
    font-family: 'Roboto';
8
    font-style: normal;
9
 
10
    &> {
11
        img {
12
            width: 100%;
13
            height: auto;
14
        }
15
 
16
        h2 {
17
            color: $title-color;
18
            font-weight: 800;
19
        }
20
 
21
        h3 {
22
            color: $subtitle-color;
23
            font-weight: 400;
24
        }
25
 
26
        p {
27
            color: $font-color;
28
            font-weight: 400;
29
            text-align: justify;
30
            text-justify: inter-word;
31
        }
32
    }
33
}
34
 
35
.knowledge-record-list {
36
    display: flex;
37
    flex-wrap: wrap;
38
    gap: 1rem;
39
}
40
 
41
.knowledge-record-card-actions {
42
    display: flex;
43
    align-items: center;
44
    justify-content: space-between;
45
}
46
 
47
.knowledge-category-list {
48
    width: 100%;
49
    padding: 25px 20px;
50
    border: 1px solid var(--border-primary);
51
    background-color: var(--bg-color);
52
    text-align: center;
53
    border-radius: 10px;
54
}
55
 
56
 
57
.knowledge-category-li {
58
    font-family: 'Roboto';
59
    font-style: normal;
60
    font-weight: 400;
61
    font-size: 16px;
62
    line-height: 19px;
63
    display: flex;
64
    align-items: center;
65
 
66
    color: #16283C;
67
    margin-top: 10px;
68
 
69
}
70
 
71
.knowledge-category-li-selected {
72
    background-color: var(--bg-color-secondary);
73
}
74
 
75
.knowledge-add-container {
76
    padding-top: 10px;
77
    padding-bottom: 10px;
78
    text-align: center;
79
}
80
 
81
.knowledge-add-a {
82
    font-family: 'Roboto';
83
    font-style: normal;
84
    font-weight: 400;
85
    font-size: 16px;
86
    line-height: 19px;
87
 
88
 
89
    color: #666666;
90
 
91
}