at-rules.css 450 B

12345678910111213141516171819202122232425262728293031323334
  1. a {
  2. @include section-type-1(
  3. $header:
  4. (
  5. margin: 0 0 $margin-base,
  6. text-align: left,
  7. ),
  8. $decoration:
  9. (
  10. type: base,
  11. margin: 0 auto -1px 0,
  12. primary-color: $brand-primary,
  13. secondary-color: $gray-light,
  14. ),
  15. $title:
  16. (
  17. margin: 0 0 $margin-small,
  18. color: false,
  19. font-size: $font-size-h3,
  20. font-weight: false,
  21. line-height: $line-height-h3,
  22. )
  23. );
  24. }
  25. a {
  26. @include item-spotlight-properties-transition(
  27. "-title",
  28. (
  29. box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15),
  30. )
  31. );
  32. }