2019-11-04 13:09:44 +00:00
|
|
|
.taxo {
|
2019-11-11 03:11:03 +00:00
|
|
|
margin: 2.5rem 0;
|
2019-11-12 10:03:15 +00:00
|
|
|
z-index: z('taxo');
|
2019-11-04 13:09:44 +00:00
|
|
|
|
2019-11-17 11:01:09 +00:00
|
|
|
&-root {
|
2019-11-17 16:44:04 +00:00
|
|
|
position: -webkit-sticky;
|
2019-11-17 11:01:09 +00:00
|
|
|
position: sticky;
|
|
|
|
top: $grid_navbar_height;
|
|
|
|
@include themify($themes) {
|
|
|
|
background-color: themed('body-background-color');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-04 13:09:44 +00:00
|
|
|
&__title {
|
2019-11-09 19:52:09 +00:00
|
|
|
font-weight: 700;
|
2019-11-08 02:15:12 +00:00
|
|
|
font-family: $taxo_titie_font;
|
2019-11-04 13:09:44 +00:00
|
|
|
@include themify($themes) {
|
|
|
|
color: themed('taxo-title-color');
|
|
|
|
&:hover {
|
|
|
|
color: themed('link-hover');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__link {
|
2019-11-19 17:54:47 +00:00
|
|
|
text-decoration: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__text {
|
|
|
|
padding: 0.125rem 0.25rem;
|
|
|
|
|
|
|
|
@include on-event {
|
|
|
|
text-decoration: underline !important;
|
|
|
|
}
|
|
|
|
@include themify($themes) {
|
|
|
|
color: inherit;
|
|
|
|
background-color: themed('taxo-tags-background-color');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__num {
|
|
|
|
border-top-right-radius: 0.175rem;
|
|
|
|
border-bottom-right-radius: 0.175rem;
|
|
|
|
padding: 0.125rem 0.25rem;
|
|
|
|
|
|
|
|
@include themify($themes) {
|
|
|
|
color: themed('taxo-num-color');
|
|
|
|
background-color: themed('taxo-num-background-color');
|
|
|
|
}
|
2019-11-04 13:09:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.title {
|
|
|
|
display: block;
|
|
|
|
margin: 0rem;
|
|
|
|
margin-right: 0.5rem;
|
|
|
|
margin-bottom: 0.25rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tag {
|
|
|
|
margin: 0;
|
|
|
|
margin-right: 0.25rem;
|
|
|
|
margin-bottom: 0.25rem;
|
|
|
|
font-size: 0.8rem;
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
@include themify($themes) {
|
|
|
|
color: themed('taxo-title-color');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.is-tags {
|
2019-11-19 17:54:47 +00:00
|
|
|
border-radius: 0.175rem;
|
2019-11-04 13:09:44 +00:00
|
|
|
@include themify($themes) {
|
|
|
|
color: themed('taxo-tags-color');
|
|
|
|
background-color: themed('taxo-tags-background-color');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.is-categories {
|
2019-11-19 17:54:47 +00:00
|
|
|
border-radius: 0.175rem;
|
2019-11-04 13:09:44 +00:00
|
|
|
@include themify($themes) {
|
|
|
|
color: themed('taxo-categories-color');
|
|
|
|
background-color: themed('taxo-categories-background-color');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.is-series {
|
2019-11-19 17:54:47 +00:00
|
|
|
border-radius: 0.175rem;
|
2019-11-04 13:09:44 +00:00
|
|
|
@include themify($themes) {
|
|
|
|
color: themed('taxo-series-color');
|
|
|
|
background-color: themed('taxo-series-background-color');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|