Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5474 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |

@use "../../settings/mixins.scss";

.profile_info {
    width: 100%;
    padding: 25px 20px;
    border: 1px solid $border-primary;
    background-color: $bg-color;
    text-align: center;
    border-radius: 10px;

    h3 {
        justify-content: flex-start;
        font-weight: 700;
        font-size: 1.3rem;
        text-align: left;
    }

    h4 {
        position: absolute;
        bottom: 0;
    }

    ul {
        display: flex;
        gap: 5px;
        justify-content: space-around;
    }

    hr {
        width: 80%;
        margin: 1rem auto;
    }

    &_header {
        display: flex;
        position: relative;

        &_imgContainer {
            overflow: hidden;
            border-radius: 100px;
            margin: 0 auto;

            img {
                background: #fff;
            }
        }
    }
}

.profile-info {
    @include mixins.widget;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 1rem;
    text-align: center;

    img {
        border-radius: 50%;
        border: 2px solid $font-color;
        height: 150px;
        width: 150px;
    }

    h3 {
        color: $title-color;
        font-size: 1.1rem;
        font-weight: 600;
    }

    span {
        color: $subtitle-color
    }

    svg,
    b {
        color: $font-color;
    }

    .row {
        gap: .5rem;
    }
}