File: /var/www/innodrive/src/scss/blocks/tags.scss
.tags {
@extend %page-container;
padding-bottom: 30px;
ul {
@include reset-list;
line-height: 42px;
letter-spacing: 0.24em;
}
li {
display: inline;
padding: 5px 5px;
text-transform: uppercase;
font-size: 16px;
line-height: 16px;
letter-spacing: initial;
color: #a5a5a5;
background-color: #f3f4f9;
}
.tags__property {
display: flex;
&:not(:first-child) {
margin-top: 15px;
}
&-name {
margin-right: 10px;
padding-top: 8px;
text-transform: uppercase;
}
}
}
@include media('tablet-m') {
.tags {
.tags__property {
&-name {
font-size: 16px;
}
}
}
}
@include media('tablet-s') {
.tags {
ul {
@include reset-list;
line-height: 26px;
letter-spacing: 0.04em;
}
li {
padding: 2.5px 2.5px;
font-size: 13px;
line-height: 15px;
}
.tags__property {
&-name {
padding-top: 0;
}
}
}
}
@include media('mobile') {
.tags {
.tags__property {
flex-direction: column;
&:not(:first-child) {
margin-top: 10px;
}
}
}
}