2020-08-22 07:20:08 -04:00
|
|
|
.taxonomy-type {
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: var(--body-text-color);
|
2020-09-03 17:32:28 -04:00
|
|
|
font-weight: bold;
|
2020-08-22 07:20:08 -04:00
|
|
|
margin-bottom: 5px;
|
|
|
|
font-size: 1.6rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.taxonomy-card {
|
|
|
|
border-radius: var(--card-border-radius);
|
|
|
|
background-color: var(--card-background);
|
2020-08-24 14:28:17 -04:00
|
|
|
padding: var(--small-card-padding);
|
2020-08-22 07:20:08 -04:00
|
|
|
@include box_shadow(1);
|
2020-08-24 14:28:17 -04:00
|
|
|
margin-bottom: var(--section-separation);
|
2020-08-22 07:20:08 -04:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
2020-08-24 14:28:17 -04:00
|
|
|
--separation: 15px;
|
|
|
|
|
2020-08-22 07:20:08 -04:00
|
|
|
.taxonomy-term {
|
|
|
|
font-size: 2.2rem;
|
|
|
|
margin: 0;
|
2020-08-24 14:28:17 -04:00
|
|
|
margin-top: calc(var(--separation) / 2);
|
2020-08-22 07:20:08 -04:00
|
|
|
color: var(--card-text-color-main);
|
|
|
|
|
|
|
|
& + .taxonomy-description {
|
2020-08-24 14:28:17 -04:00
|
|
|
margin-top: var(--separation);
|
2020-08-22 07:20:08 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.taxonomy-description {
|
|
|
|
font-weight: normal;
|
|
|
|
color: var(--card-text-color-secondary);
|
2020-08-24 14:28:17 -04:00
|
|
|
font-size: 1.6rem;
|
2020-08-22 07:20:08 -04:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.taxonomy-details {
|
|
|
|
flex-grow: 1;
|
|
|
|
margin-right: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.taxonomy-image {
|
|
|
|
img {
|
|
|
|
width: 60px;
|
|
|
|
height: 60px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.taxonomy-count {
|
|
|
|
color: var(--card-text-color-tertiary);
|
|
|
|
font-size: 1.4rem;
|
|
|
|
margin: 0;
|
2020-09-03 17:32:28 -04:00
|
|
|
font-weight: bold;
|
2020-08-22 07:20:08 -04:00
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
}
|