Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6788 | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |

@use './mixins.scss';

.profile-attr {
    @include mixins.widget;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;

    span,
    p {
        color: $font-color;
    }

    ul {
        display: flex;
        flex-wrap: wrap;
        gap: .5rem;

        li {
            display: inline-flex;
            width: fit-content;

            span {
                background-color: $font-color;
                border-radius: 30px;
                color: $bg-color;
                font-size: 14px;
                font-weight: 600;
                padding: .5rem 1rem;
                width: fit-content;
            }
        }
    }

    &-header {
        display: flex;
        align-items: center;
        justify-content: space-between;

        h2 {
            color: $title-color;
            font-size: 18px;
            font-weight: 600;
        }
    }
}

.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;
    }

    .social-network-header {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        width: 100%;

        button {
            position: absolute;
            right: 15%;

            svg {
                font-size: 1.2rem;
            }
        }
    }

    .social-links {
        display: flex;
        flex-direction: column;
        gap: .5rem;
        width: 100%;

        li {
            border-bottom: 1px solid $border-primary;

            a {
                display: flex;
                align-items: center;
                gap: .5rem;

                svg {
                    color: $font-color
                }

                span {
                    white-space: nowrap;
                    max-width: -webkit-fill-available;
                    text-overflow: ellipsis;
                    overflow: hidden;
                }
            }
        }
    }
}