Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
5793 stevensc 1
@use "../../settings/mixins.scss";
2
 
3
.group-info {
4
    @include mixins.widget;
5
    align-items: center;
6
    display: flex;
7
    flex-direction: column;
8
    gap: .5rem;
9
    padding: 1rem;
10
    text-align: center;
11
 
12
    img {
13
        border-radius: 50%;
14
        border: 2px solid $font-color;
15
        height: 150px;
16
        width: 150px;
17
    }
18
 
19
    h3 {
20
        color: $title-color;
21
        font-size: 1.1rem;
22
        font-weight: 600;
23
    }
24
 
25
    span {
26
        color: $subtitle-color
27
    }
28
 
29
    svg,
30
    b {
31
        color: $font-color;
32
    }
33
 
34
    .row {
35
        gap: .5rem;
36
    }
37
}
38
 
39
.group-attr {
40
    @include mixins.widget;
41
    padding: 1rem;
42
    display: flex;
43
    flex-direction: column;
44
    gap: .5rem;
45
 
46
    span,
47
    p {
48
        color: $font-color;
49
    }
50
 
51
    ul {
52
        display: flex;
53
        flex-wrap: wrap;
54
        gap: .5rem;
55
 
56
        li {
57
            display: inline-flex;
58
            width: fit-content;
59
 
60
            span {
61
                background-color: $font-color;
62
                border-radius: 30px;
63
                color: $bg-color;
64
                font-size: 14px;
65
                font-weight: 600;
66
                padding: .5rem 1rem;
67
                width: fit-content;
68
            }
69
        }
70
    }
71
 
72
    &-header {
73
        display: flex;
74
        align-items: center;
75
        justify-content: space-between;
76
 
77
        h2 {
78
            color: $title-color;
79
            font-size: 18px;
80
            font-weight: 600;
81
        }
82
    }
83
}