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