@import "../../src/scss/variables.scss"; @import "../../src/scss/mixins.scss"; .component-articleBox { position: relative; padding-bottom: 20px; height: 100%; .image { width: 100%; padding-bottom: 10px; } .title { display: block; width: 100%; padding-right: 5px; font-size: $font-16; font-weight: 600; line-height: $font-16; color: $black; } .marker { position: absolute; top: 10px; left: 10px; &:before { position: absolute; content: '\e903'; font-family: $icon; font-size: 30px; color: $white; } &:after { position: absolute; top: 4px; left: 3px; content: '\e903'; font-family: $icon; font-size: 24px; color: $gray; } &.olive { &:after {color: $olive;} } &.gray { &:after {color: $dark-gray;} } &.white { &:after {color: $white;} } &.orange { &:after {color: $orange;} } } }