123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- .title,
- .subtitle
- @extend .block
- font-weight: $weight-title-normal
- word-break: break-word
- em,
- span
- font-weight: $weight-title-normal
- a
- &:hover
- border-bottom: 1px solid
- strong
- font-weight: $weight-title-bold
- .tag
- vertical-align: bottom
- .title
- color: $text-strong
- font-size: $size-large
- line-height: 1
- code
- display: inline-block
- font-size: $size-large
- strong
- color: inherit
- & + .highlight
- margin-top: -10px
- & + .subtitle
- margin-top: -10px
- // Colors
- @each $size in $sizes
- $i: index($sizes, $size)
- &.is-#{$i}
- font-size: $size
- code
- font-size: nth($sizes, min($i + 1, 6))
- // Modifiers
- &.is-normal
- font-weight: 400
- strong
- font-weight: 700
- // Responsiveness
- +tablet
- & + .subtitle
- margin-top: -15px
- .subtitle
- color: $text
- font-size: $size-medium
- line-height: 1.125
- code
- border-radius: $radius
- display: inline-block
- font-size: $size-normal
- padding: 2px 3px
- vertical-align: top
- strong
- color: $text-strong
- & + .title
- margin-top: -20px
- // Colors
- @each $size in $sizes
- $i: index($sizes, $size)
- &.is-#{$i}
- font-size: $size
- code
- font-size: nth($sizes, min($i + 1, 6))
- // Modifiers
- &.is-normal
- font-weight: 400
- strong
- font-weight: 700
|