font.css 383 B

12345678910111213141516171819
  1. @font-face {
  2. font-family: 'dinProSemiBold';
  3. src: url('static/fonts/D-DIN-PRO-600-SemiBold.otf');
  4. }
  5. @font-face {
  6. font-family: 'dinProRegular';
  7. src: url('static/fonts/D-DIN-PRO-400-Regular.otf');
  8. }
  9. .semiBold{
  10. font-family: 'dinProSemiBold';
  11. }
  12. .regular{
  13. font-family: 'dinProRegular';
  14. }
  15. .pingFang{
  16. font-family: 'PingFang SC, PingFang SC';
  17. font-weight: 500;
  18. }