50 lines
619 B
CSS
50 lines
619 B
CSS
/* Font Family Utility Classes */
|
|
.font-melle {
|
|
font-family: 'MElleHK', sans-serif;
|
|
}
|
|
|
|
.font-noto-sans {
|
|
font-family: 'NotoSansCJKtc', sans-serif;
|
|
}
|
|
|
|
.font-noto-mono {
|
|
font-family: 'NotoSansMonoCJKtc', monospace;
|
|
}
|
|
|
|
.font-noto-serif {
|
|
font-family: 'NotoSerifCJKjp', serif;
|
|
}
|
|
|
|
/* Font Weight Utility Classes */
|
|
.font-thin {
|
|
font-weight: 100;
|
|
}
|
|
|
|
.font-light {
|
|
font-weight: 300;
|
|
}
|
|
|
|
.font-demi-light {
|
|
font-weight: 350;
|
|
}
|
|
|
|
.font-regular {
|
|
font-weight: 400;
|
|
}
|
|
|
|
.font-medium {
|
|
font-weight: 500;
|
|
}
|
|
|
|
.font-bold {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.font-xbold {
|
|
font-weight: 800;
|
|
}
|
|
|
|
.font-black {
|
|
font-weight: 900;
|
|
}
|