Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Ir a la última revisión | | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
6788 stevensc 1
@use './mixins.scss';
2
 
3
.profile-attr {
4
    @include mixins.widget;
5
    padding: 1rem;
6
    display: flex;
7
    flex-direction: column;
8
    gap: .5rem;
9
 
10
    span,
11
    p {
12
        color: $font-color;
13
    }
14
 
15
    ul {
16
        display: flex;
17
        flex-wrap: wrap;
18
        gap: .5rem;
19
 
20
        li {
21
            display: inline-flex;
22
            width: fit-content;
23
 
24
            span {
25
                background-color: $font-color;
26
                border-radius: 30px;
27
                color: $bg-color;
28
                font-size: 14px;
29
                font-weight: 600;
30
                padding: .5rem 1rem;
31
                width: fit-content;
32
            }
33
        }
34
    }
35
 
36
    &-header {
37
        display: flex;
38
        align-items: center;
39
        justify-content: space-between;
40
 
41
        h2 {
42
            color: $title-color;
43
            font-size: 18px;
44
            font-weight: 600;
45
        }
46
    }
47
}