Sha256: d1964d34b78dd91616fd4a7b1d782a14ee1fd511144d1e01591e7bcd0c947310
Contents?: true
Size: 562 Bytes
Versions: 5
Compression:
Stored size: 562 Bytes
Contents
// Roboto as default Mekari fontfamily $font-family: "Roboto"; $fonts: ( 300: "Regular", 400: "Regular", 500: "Medium", 700: "Medium", 900: "Medium" ); $font-path: #{"../../fonts/Roboto/Roboto-"} !default; @if $is-using-rubygems { $font-path: #{"fonts/Roboto/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
5 entries across 5 versions & 1 rubygems