_mixins.scss 509 B

123456789101112131415161718192021222324252627282930
  1. // Mixins
  2. // Background Cover Mixin
  3. @mixin background-cover {
  4. -webkit-background-size: cover;
  5. -moz-background-size: cover;
  6. -o-background-size: cover;
  7. background-size: cover;
  8. }
  9. // Font Mixins
  10. @mixin body-font {
  11. font-family: 'Lato', sans-serif;
  12. }
  13. @mixin text-font {
  14. font-family: 'Lato', sans-serif;
  15. }
  16. @mixin text-roboto-font {
  17. font-family: 'Roboto', sans-serif;
  18. }
  19. @mixin heading-font {
  20. font-family: 'Lato', sans-serif;
  21. }
  22. @mixin heading-roboto-font {
  23. font-family: 'Roboto', sans-serif;
  24. }