Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6734 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
6734 stevensc 1
@import '../../styles/variables.scss';
2
 
3
.profile_item {
4
    width: 100%;
5
    padding: 25px 20px;
6
    border: 1px solid $border-primary;
7
    background-color: $bg-color;
8
    text-align: center;
9
    border-radius: 10px;
7097 stevensc 10
    position: relative;
6734 stevensc 11
 
12
    h3 {
13
        color: $title-color;
14
        font-size: 1.4rem;
15
        font-weight: 700;
16
    }
17
 
18
    h4 {
19
        color: $subtitle-color;
20
        font-weight: 600;
21
    }
22
 
23
    ul {
24
        display: flex;
25
        gap: 5px;
26
        justify-content: space-around;
27
    }
28
 
29
    hr {
30
        width: 90%;
31
        margin: .5rem auto;
32
    }
33
 
34
    &_header {
35
        align-items: center;
36
        display: flex;
37
        gap: .5rem;
38
        position: relative;
39
 
40
        img {
41
            height: 80px;
42
            width: 80px;
43
            border-radius: 50%;
44
        }
45
 
46
        &_info {
47
            display: flex;
48
            flex-direction: column;
49
            align-items: center;
50
            text-align: left;
51
            flex: 1;
52
 
53
            ul {
54
                margin-top: .5rem;
55
                display: flex;
56
                justify-content: space-around;
57
                align-self: center;
58
                gap: .5rem;
59
                flex: 1;
60
            }
61
        }
62
    }
63
}