taler-www

Main taler.net website
Log | Files | Refs | Submodules | README | LICENSE

_larger.scss (393B)


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