Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
2281 stevensc 1
@use "../css/shared/variables";
2287 stevensc 2
@use "../css/shared/breakpoints";
2281 stevensc 3
 
4
.profile_info {
5
    width: 100%;
6
    padding: 25px 20px;
7
    border: 1px solid variables.$border-gray;
8
    background-color: variables.$white;
9
    text-align: center;
10
    margin-bottom: 30px;
11
    border-radius: variables.$border-radius;
2285 stevensc 12
    h3 {
13
        justify-content: flex-start;
14
        font-weight: 700;
15
        font-size: 1.3rem;
16
    }
2281 stevensc 17
    h4 {
18
        position: absolute;
19
        bottom: 5px;
20
    }
2284 stevensc 21
    ul {
22
        display: flex;
23
        gap: 5px;
2287 stevensc 24
        justify-content: center;
2284 stevensc 25
    }
2287 stevensc 26
    img {
27
        min-height: 180px;
28
    }
2281 stevensc 29
}
2287 stevensc 30
 
31
@include breakpoints.maxwidth("medium") {
32
    .profile_info {
33
        width: 100%;
34
        padding: 25px 20px;
35
        border: 1px solid variables.$border-gray;
36
        background-color: variables.$white;
37
        text-align: center;
38
        margin-bottom: 30px;
39
        border-radius: variables.$border-radius;
40
        h3 {
41
            justify-content: flex-start;
42
            font-weight: 700;
43
            font-size: 1.3rem;
44
        }
45
        h4 {
46
            position: absolute;
47
            bottom: 5px;
48
        }
49
        ul {
50
            display: flex;
51
            gap: 5px;
52
            justify-content: center;
53
        }
54
    }
55
}