You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
994 B
60 lines
994 B
@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;}
|
|
}
|
|
}
|
|
|
|
}
|