29 lines
739 B
CSS
29 lines
739 B
CSS
/* You can add global styles to this file, and also import other style files */
|
|
@font-face {
|
|
font-family: 'Century Schoolbook';
|
|
src: url('assets/century-schoolbook/CenturySchoolbookRegular.ttf');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Century Schoolbook";
|
|
src: url("assets/century-schoolbook/CenturySchoolbookBold.ttf");
|
|
font-weight: bold;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Century Schoolbook";
|
|
src: url("assets/century-schoolbook/CenturySchoolbookItalic.ttf");
|
|
font-style: italic;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Century Schoolbook";
|
|
src: url("assets/century-schoolbook/CenturySchoolbookBoldItalic.ttf");
|
|
font-weight: bold;
|
|
font-style: italic;
|
|
}
|
|
|
|
.contract-body {
|
|
font-family: 'Century Schoolbook';
|
|
}
|