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 692B

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