@include namespace('post-list') { @include store(( --colors: ( --cat: ( --fg: prop(--colors --fg-lo, $global: true), ), --post: ( --idle-fg: prop(--colors --fg-lo, $global: true), --visited-fg: prop(--colors --fg, $global: true), ), --meta: ( --fg: prop(--colors --fg-hi, $global: true), ) ) )); @include component(namespace()) { @include element('category-header') { color: prop(--colors --cat --fg); } @include element('category-content') { margin-top: $line-height * .5rem; filter: drop-shadow(#{prop(--dims --obj-shadow, $global: true)} #{prop(--colors --obj-shadow, $global: true)}); } @include element('post') { box-shadow: none; color: prop(--colors --post --idle-fg); &:visited { color: prop(--colors --post --visited-fg); } @include next-twin-element { margin-top: .6rem; } } } }