Noah
de3d6e9315
* Vendor fontawesome icons * User settings page: to edit profile details (other features not hooked up yet) * Initial user profile page
20 lines
364 B
Plaintext
20 lines
364 B
Plaintext
// sizing icons
|
|
// -------------------------
|
|
|
|
// literal magnification scale
|
|
.sizes-literal(@factor) when (@factor > 0) {
|
|
.sizes-literal((@factor - 1));
|
|
|
|
.@{fa-css-prefix}-@{factor}x {
|
|
font-size: (@factor * 1em);
|
|
}
|
|
}
|
|
.sizes-literal(10);
|
|
|
|
// step-based scale (with alignment)
|
|
each(.fa-sizes(), {
|
|
.@{fa-css-prefix}-@{key} {
|
|
.fa-size(@value);
|
|
}
|
|
});
|