42 lines
831 B
CSS
42 lines
831 B
CSS
/* 字体定义 */
|
|
@font-face {
|
|
font-family: 'Arial';
|
|
src: url('./ARIAL.ttf') format('truetype');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'ArialBold';
|
|
src: url('./ARIALBD.ttf') format('truetype');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'ArialMedium';
|
|
src: url('./ArialMdm.ttf') format('truetype');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Poppins';
|
|
src: url('./Poppins-Regular.ttf') format('truetype');
|
|
font-weight: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'PoppinsMedium';
|
|
src: url('./Poppins-Medium.ttf') format('truetype');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'PoppinsBold';
|
|
src: url('./Poppins-SemiBold.ttf') format('ttf');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Instrument';
|
|
src: url('./InstrumentSans-Regular.ttf') format('truetype');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'InstrumentBold';
|
|
src: url('./InstrumentSans-Bold.ttf') format('truetype');
|
|
}
|