title.sass 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. $title-color: $grey-darker !default
  2. $title-size: $size-3 !default
  3. $title-weight: $weight-semibold !default
  4. $title-strong-color: inherit !default
  5. $title-strong-weight: inherit !default
  6. $subtitle-color: $grey-dark !default
  7. $subtitle-size: $size-5 !default
  8. $subtitle-weight: $weight-normal !default
  9. $subtitle-strong-color: $grey-darker !default
  10. $subtitle-strong-weight: $weight-semibold !default
  11. .title,
  12. .subtitle
  13. +block
  14. word-break: break-word
  15. em,
  16. span
  17. font-weight: inherit
  18. .tag
  19. vertical-align: middle
  20. .title
  21. color: $title-color
  22. font-size: $title-size
  23. font-weight: $title-weight
  24. line-height: 1.125
  25. strong
  26. color: $title-strong-color
  27. font-weight: $title-strong-weight
  28. & + .highlight
  29. margin-top: -0.75rem
  30. &:not(.is-spaced) + .subtitle
  31. margin-top: -1.5rem
  32. // Sizes
  33. @each $size in $sizes
  34. $i: index($sizes, $size)
  35. &.is-#{$i}
  36. font-size: $size
  37. .subtitle
  38. color: $subtitle-color
  39. font-size: $subtitle-size
  40. font-weight: $subtitle-weight
  41. line-height: 1.25
  42. strong
  43. color: $subtitle-strong-color
  44. font-weight: $subtitle-strong-weight
  45. &:not(.is-spaced) + .title
  46. margin-top: -1.5rem
  47. // Sizes
  48. @each $size in $sizes
  49. $i: index($sizes, $size)
  50. &.is-#{$i}
  51. font-size: $size