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.

_larger.scss 393B

1234567891011121314151617181920212223
  1. // Icon Sizes
  2. // -------------------------
  3. // makes the font 33% larger relative to the icon container
  4. .#{$fa-css-prefix}-lg {
  5. font-size: (4em / 3);
  6. line-height: (3em / 4);
  7. vertical-align: -.0667em;
  8. }
  9. .#{$fa-css-prefix}-xs {
  10. font-size: .75em;
  11. }
  12. .#{$fa-css-prefix}-sm {
  13. font-size: .875em;
  14. }
  15. @for $i from 1 through 10 {
  16. .#{$fa-css-prefix}-#{$i}x {
  17. font-size: $i * 1em;
  18. }
  19. }