You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
601 B
22 lines
601 B
// Mixins |
|
// Background Cover Mixin |
|
@mixin background-cover { |
|
-webkit-background-size: cover; |
|
-moz-background-size: cover; |
|
-o-background-size: cover; |
|
background-size: cover; |
|
} |
|
|
|
// Font Mixins |
|
@mixin serif-font { |
|
font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif; |
|
} |
|
@mixin script-font { |
|
font-family: 'Kaushan Script', 'Helvetica Neue', Helvetica, Arial, cursive; |
|
} |
|
@mixin body-font { |
|
font-family: 'Roboto Slab', 'Helvetica Neue', Helvetica, Arial, sans-serif; |
|
} |
|
@mixin heading-font { |
|
font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif; |
|
}
|
|
|