Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

.feed__share {
    background-color: #fff;
    border: 1px solid lightgray;
    border-radius: 10px;
    display: grid;
    gap: 1rem;
    padding: 10px;
    width: 100%;
}

.feed__input-container {
    align-items: center;
    border: 1px solid lightgray;
    border-radius: 30px;
    color: gray;
    display: flex;
    gap: 0.5rem;
    padding: 10px;
    padding-left: 1rem;
    overflow: hidden;
    input {
        border: none;
        outline: none;
        flex: 1;
        font-weight: 600;
        &:hover {
            background-color: rgba(0, 0, 0, 0.08);
        }
    }
}

.feed__section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feed__share-options {
    display: flex;
    justify-content: space-evenly;
}

.feed__share-option {
    align-items: center;
    display: inline-flex;
    cursor: pointer;
    gap: 0.5rem;
    padding: 10px;
    &:hover {
        background-color: whitesmoke;
        border-radius: 10px;
    }
}

.feed {
    background-color: #fff;
    border: 1px solid lightgray;
    border-radius: 10px;
    padding: 1rem;
}

.feed__header {
    display: flex;
    gap: 0.5rem;
}

.feed__info > h2 {
    font-size: 1rem;
    font-weight: bold;
}

.feed__info > p {
    font-size: 0.8rem;
    color: gray;
    line-height: 1.5;
}

.feed__body {
    overflow-wrap: anywhere;
}

.feed__buttons {
    display: flex;
    justify-content: space-evenly;
}

@media (min-width: 768px) {
    .feed__buttons {
        display: flex;
        justify-content: flex-start;
        gap: 0.5rem;
    }
}