Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

mixins.scss 649B

1234567891011121314151617181920
  1. $roboto-font-path: '../../../fonts' !default;
  2. @mixin roboto-font($folder, $variant, $type, $weight, $style) {
  3. $font-full-path: '#{$roboto-font-path}/#{$folder}/#{$variant}';
  4. @font-face {
  5. font-family: '#{$variant}';
  6. src: url('#{$font-full-path}-#{$type}.woff2') format('woff2'),
  7. url('#{$font-full-path}-#{$type}.woff') format('woff');
  8. font-weight: $weight;
  9. font-style: $style;
  10. }
  11. @font-face {
  12. font-family: '#{$variant}-#{$type}';
  13. src: url('#{$font-full-path}-#{$type}.woff2') format('woff2'),
  14. url('#{$font-full-path}-#{$type}.woff') format('woff');
  15. }
  16. }