_posts-and-pages.scss 560 B

123456789101112131415161718192021
  1. .sticky {
  2. }
  3. .sticky-post {
  4. color: #{map-deep-get($config-global, "color", "background", "default")};
  5. background-color: #{map-deep-get($config-global, "color", "primary", "default")};
  6. @include font-family( map-deep-get($config-global, "font", "family", "primary") );
  7. font-weight: bold;
  8. font-size: #{map-deep-get($config-global, "font", "size", "sm")};
  9. line-height: 1;
  10. padding: calc(0.5 * #{map-deep-get($config-global, "spacing", "unit")}) calc(0.66 * #{map-deep-get($config-global, "spacing", "unit")} );
  11. }
  12. .updated:not(.published) {
  13. }
  14. .entry {
  15. }