article-bar.scss 912 Bytes
.article-bar {
    position: relative;
    background-color: #0042b1;

    .btn {
        color: #fff;
        font-weight: bold;
    }

    &--item {
        margin: 8px 0;

        @media (max-width: $screen-xs) {
            margin: 8px;
        }

    }

    &--category-button {
        position: relative;
        width: 125px;
        text-align: right;
        margin-left: 10px;
        font-size: 24px;
        line-height: 20px;
        font-family: 'Open Sans';

        .icon {
            display: inline-block;
            margin: -40px -35px -40px -50px;
            transform: scale(.37);
        }
    }

    .navbar {
        margin-bottom: 0;
    }

    .navbar-right {
        margin-right: 15px;
    }

    @each $category, $color in $categories {
        &.#{$category} {
            background-color: $color;
        }
    }

    .contraste & {
        background-color: #262626;
    }
}