Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

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

.knowledge-record-card {
    @include mixins.widget;
    font-family: 'Roboto';
    font-style: normal;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;

    &> {
        a img {
            width: 100%;
            height: auto;
        }

        h2 {
            color: $title-color;
            font-weight: 800;
        }

        h3 {
            color: $subtitle-color;
            font-weight: 400;
        }

        p {
            color: $font-color;
            font-weight: 400;
            text-align: justify;
            text-justify: inter-word;
        }
    }

    .knowledge-record-card-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

.knowledge-record-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}


.knowledge-category-list {
    @include mixins.widget;
    padding: 1rem;
    width: 100%;
    font-family: 'Roboto';
    font-style: normal;

    ul {
        display: flex;
        flex-direction: column;
        gap: .5rem;

        li {
            font-weight: 400;
            font-size: 16px;
            color: $font-color;

            &.selected {
                background-color: $bg-color-secondary;
            }
        }
    }
}

.knowledge-add-container {
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
}

.knowledge-add-a {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;


    color: #666666;

}