26 lines
533 B
SCSS
26 lines
533 B
SCSS
|
|
// FontAwesome 5
|
|
@import "../../../fonts/FontAwesome5/scss/fontawesome.scss";
|
|
@import "../../../fonts/FontAwesome5/scss/regular.scss";
|
|
@import "../../../fonts/FontAwesome5/scss/solid.scss";
|
|
@import "../../../fonts/FontAwesome5/scss/brands.scss";
|
|
|
|
|
|
$font_family: Source Sans Pro, sans-serif;
|
|
$fontawesome: "Font Awesome 5 Free";
|
|
|
|
body {
|
|
font-family: $font_family;
|
|
}
|
|
|
|
.fa-brands {
|
|
font-family: 'Font Awesome 5 Brands';
|
|
font-weight: 400;
|
|
}
|
|
|
|
//font-weight
|
|
$light: 300;
|
|
$regular: 400;
|
|
$semi-bold: 600;
|
|
$extra-bold: 800;
|
|
$heavy: 900; |