Skip to content

_mod_article_theme.scss

layout/_mod_article_theme.scss
@use "../abstracts/" as *;
// articles with background-colors can be styled globally
// or via utility-classes
.mod_article.colored-inside {
background-color: $color-primary-100;
.inside {
background-color: $color-primary-200;
}
}
// theme-styled articles
  • wenn nur einzelne Artikel farblich hinterlegt werden sollen
  • background-cd-xxx und color-cd-xxx
  • wenn Artikel grundsätzlich eingefärbt werden (F&F)
  • z.B. für Schattierungen von Hintergrundfarben bei .colored-inside:
.mod_article.colored-inside {
&.poa {
background-color: hsl(from $color-cd-poa h s l / 0.1);
.inside {
background-color: hsl(from $color-cd-poa h s l / 0.2);
}
}
}