My public website https://www.chameth.com/
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.

_fonts.sass 747B

1234567891011121314151617181920212223242526272829
  1. // Defines font families
  2. $font-dir: '/res/fonts/'
  3. $text-font: 'Source Sans Pro'
  4. $header-font: 'League Spartan'
  5. $fa-font: 'FontAwesome'
  6. // Provides src properties for woff2 and woff font files.
  7. @mixin woff-font-src($file-name)
  8. $font: $font-dir + $file-name
  9. src: url($font + '.woff2') format('woff2'), url($font + '.woff') format('woff')
  10. @font-face
  11. font-family: 'Source Sans Pro'
  12. font-weight: normal
  13. font-style: normal
  14. @include woff-font-src('SourceScansPro-Regular')
  15. @font-face
  16. font-family: 'League Spartan'
  17. font-weight: bold
  18. font-style: normal
  19. @include woff-font-src('leaguespartan-bold')
  20. @font-face
  21. font-family: 'FontAwesome'
  22. font-weight: normal
  23. font-style: normal
  24. @include woff-font-src('fontawesome-chameth-1')