53 lines
992 B
SCSS
Raw Normal View History

body:not(.category-header) {
// hides banners based on outcome of shouldShow
.category-header-banner {
display: none;
}
}
2019-01-11 13:19:51 -05:00
div[class^="category-title-header"] {
2018-04-26 01:25:49 -04:00
display: flex;
text-align: center;
width: 100%;
justify-content: center;
2018-04-26 01:25:49 -04:00
.category-title-contents {
max-width: 500px;
padding: 40px;
.d-icon-lock {
2022-02-09 15:24:56 -06:00
height: 0.75em;
width: 0.75em;
vertical-align: 0;
2018-06-11 13:54:15 -04:00
}
}
.category-title-description {
a,
a:visited {
color: inherit;
text-decoration: underline;
}
}
// styles that impact the category icons theme component
.category-icon-widget-wrapper {
display: inline-block;
.category-icon-widget {
display: flex;
.category-icon {
display: flex;
@if $override_category_icon_color == "true" {
color: currentColor !important; // overrides inline style
}
.d-icon {
height: 0.75em;
width: 0.75em;
}
}
}
}
2018-04-26 01:25:49 -04:00
}