Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

.linked__widget,
.suggest__widget {
    background: #fff;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid lightgray;
    height: fit-content;

    &>a {
        font-size: 1rem;
        color: gray;

        svg {
            font-size: 1.3rem;
        }
    }

    img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
    }

    p {
        padding: 0 1rem;
    }

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

        h3 {
            font-weight: 600;
        }
    }

    .linked__widget-list {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .linked__widget-content {
        display: flex;
        align-items: center;
        gap: 0.5rem;

        .linked__widget-info {
            display: flex;
            flex-direction: column;
            gap: 5px;
            align-items: flex-start;

            h4 {
                font-weight: 600;
            }

            p {
                color: gray;
            }

            .btn {
                border-radius: 30px;
                font-weight: 600;
                background: transparent !important;
                border: 2px solid lightgray !important;
                border-radius: 30px;
                color: gray !important;

                &:hover {
                    background: lightgray !important;
                    color: #fff !important;
                }
            }
        }
    }

    @media (min-width: 768px) {
        border-radius: 10px;
    }
}

.suggest__widget {
    padding: 0;

    .linked__widget-list {
        padding: 0 1rem;
    }

    .linked__widget-header {
        padding: 1rem 1rem 0;
    }

    .load__suggest {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem 0;
        color: rgba(0, 0, 0, 0.6);
        cursor: pointer;

        &:hover {
            background-color: rgba(0, 0, 0, 0.08);
        }
    }
}

.description__label {
    label {
        font-size: 1rem;
        font-weight: 600;
    }

    p {
        font-size: 0.9rem;
    }

    margin-bottom: 1rem;
}

.button {
    border-radius: 30px;
    align-items: center;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    border: none;
    cursor: pointer;
    font-weight: 600;
    width: fit-content;
    display: inline-flex;
    justify-content: center;
    min-width: 6.4rem;
    max-width: 480px;
    overflow: hidden;
    text-align: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.members-image__list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
    overflow: hidden;
    padding: 0 1rem;
}

.group__actions {
    background-color: #fff;
    border: 1px solid lightgray;
    border-radius: 10px;
    overflow: hidden;

    .group__actions-cover {
        height: 150px;
        width: 100%;

        img {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }
    }

    .group__actions-body {
        &>img {
            margin-top: -44px;
            width: 88px;
            height: 88px;
            border: 2px solid #fff;
        }

        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        padding: 0 1rem 1rem;
    }
}