Sha256: e544e74c7f004e52c4c6993b2b1b244ffbb9be805eeae9a247ab7c7e1695360f
Contents?: true
Size: 583 Bytes
Versions: 6
Compression:
Stored size: 583 Bytes
Contents
// Roboto as default Mekari fontfamily $font-family: "Roboto"; $fonts: ( 300: "Roboto-Regular", 400: "Roboto-Regular", 500: "Roboto-Medium", 700: "Roboto-Medium", 900: "Roboto-Medium" ); $font-path: #{"../../fonts/Roboto/"} !default; @if $is-using-rubygems { $font-path: #{"fonts/Roboto/"} !default; } @each $font-weight, $font-type in $fonts { $src: #{$font-path}#{$font-type}; @font-face { font-family: $font-family; font-style: normal; font-weight: #{$font-weight}; src: local($font-family); src: url("#{$src}.ttf") format("truetype"); } }
Version data entries
6 entries across 6 versions & 1 rubygems