This repository has been archived on 2023-05-26. You can view files and clone it, but cannot push or open issues or pull requests.
web/assets/web-fonts-with-css/scss/_larger.scss

24 lines
393 B
SCSS
Executable File

// Icon Sizes
// -------------------------
// makes the font 33% larger relative to the icon container
.#{$fa-css-prefix}-lg {
font-size: (4em / 3);
line-height: (3em / 4);
vertical-align: -.0667em;
}
.#{$fa-css-prefix}-xs {
font-size: .75em;
}
.#{$fa-css-prefix}-sm {
font-size: .875em;
}
@for $i from 1 through 10 {
.#{$fa-css-prefix}-#{$i}x {
font-size: $i * 1em;
}
}