123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- .btn, %btn
- display: inline-block
- background: $c-highlight
- padding: $btn-space/2 $btn-space
- border: none
- color: $c-background-invert
- border-radius: $b-borderRadius
- font-size: $b-fontSize-m
- &:hover,
- &:focus
- color: $c-background-invert
- background: lighten($c-highlight, 5%)
- .btn--s
- line-height: 2.5
- padding-left: $b-space
- padding-right: $b-space
- .btn-b
- @extend %btn
- float: right
- .btn--c
- background: none
-
- color: $c-highlight
- &:hover,
- &:focus
- background: $c-highlight
- color: $c-text-invert
|