52 lines
940 B
SCSS
52 lines
940 B
SCSS
|
|
@font-face {
|
|
font-family: "Roboto";
|
|
src: url("/assets/fonts/RobotoMono-VariableFont_wght.ttf") format("truetype");
|
|
//font-weight: $font-weight-normal;
|
|
//font-style: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "dcc";
|
|
src: url("/assets/fonts/dcc_sharp_distress_black_by_dccanim.otf") format("truetype");
|
|
//font-weight: $font-weight-normal;
|
|
//font-style: normal;
|
|
}
|
|
|
|
|
|
.app-font-size-xs{
|
|
font-size: $font-size-xs !important;
|
|
}
|
|
|
|
.app-font-size-sm{
|
|
font-size: $font-size-sm !important;
|
|
}
|
|
|
|
.app-font-size-md{
|
|
font-size: $font-size-md !important;
|
|
}
|
|
|
|
.app-font-size-lg{
|
|
font-size: $font-size-lg !important;
|
|
}
|
|
|
|
.app-font-size-xl{
|
|
font-size: $font-size-xl !important;
|
|
}
|
|
|
|
.app-font-weight-normal {
|
|
font-weight: $font-weight-normal;
|
|
}
|
|
|
|
.app-font-weight-medium {
|
|
font-weight: $font-weight-medium;
|
|
}
|
|
|
|
.app-font-weight-semi-bold {
|
|
font-weight: $font-weight-semi-bold;
|
|
}
|
|
|
|
.app-font-weight-bold {
|
|
font-weight: $font-weight-bold;
|
|
}
|