💄 Add basic fonts
This commit is contained in:
parent
c1fbfaf9a9
commit
43332631b3
7
src/base/fonts/_font-family.scss
Normal file
7
src/base/fonts/_font-family.scss
Normal file
|
@ -0,0 +1,7 @@
|
|||
$primary-font: Arial, sans-serif;
|
||||
$alt-font: georgia, sans-serif;
|
||||
|
||||
$font-family: (
|
||||
"primary": $primary-font,
|
||||
"alt": $alt-font,
|
||||
)
|
15
src/base/fonts/_font-height.scss
Normal file
15
src/base/fonts/_font-height.scss
Normal file
|
@ -0,0 +1,15 @@
|
|||
@use '../../functions/functions' as size;
|
||||
|
||||
$line-height-4v: size.convert(20px);
|
||||
$line-height-5v: size.convert(22px);
|
||||
$line-height-6v: size.convert(24px);
|
||||
$line-height-7v: size.convert(28px);
|
||||
$line-height-8v: size.convert(32px);
|
||||
$line-height-9v: size.convert(36px);
|
||||
$line-height-10v: size.convert(40px);
|
||||
$line-height-12v: size.convert(48px);
|
||||
$line-height-14v: size.convert(56px);
|
||||
$line-height-16v: size.convert(64px);
|
||||
$line-height-18v: size.convert(72px);
|
||||
$line-height-20v: size.convert(80px);
|
||||
$line-height-22v: size.convert(88px);
|
18
src/base/fonts/_font-size.scss
Normal file
18
src/base/fonts/_font-size.scss
Normal file
|
@ -0,0 +1,18 @@
|
|||
@use '../../functions/functions' as size;
|
||||
|
||||
$type-scale-12: size.convert(12px);
|
||||
$type-scale-14: size.convert(14px);
|
||||
$type-scale-16: size.convert(16px);
|
||||
$type-scale-18: size.convert(18px);
|
||||
$type-scale-20: size.convert(20px);
|
||||
$type-scale-22: size.convert(22px);
|
||||
$type-scale-24: size.convert(24px);
|
||||
$type-scale-28: size.convert(28px);
|
||||
$type-scale-32: size.convert(32px);
|
||||
$type-scale-40: size.convert(40px);
|
||||
$type-scale-44: size.convert(44px);
|
||||
$type-scale-48: size.convert(48px);
|
||||
$type-scale-56: size.convert(56px);
|
||||
$type-scale-64: size.convert(64px);
|
||||
$type-scale-72: size.convert(72px);
|
||||
$type-scale-80: size.convert(80px);
|
4
src/base/fonts/_font-weight.scss
Normal file
4
src/base/fonts/_font-weight.scss
Normal file
|
@ -0,0 +1,4 @@
|
|||
$font-weight-light: 300;
|
||||
$font-weight-regular: 400;
|
||||
$font-weight-bold: 600;
|
||||
$font-weight-xx-bold: 900;
|
Loading…
Reference in New Issue
Block a user