din.css 741 B

123456789101112131415161718192021222324252627282930313233343536
  1. @font-face {
  2. font-family: 'dinM';
  3. src: local('dinM'), url(./DIN-Medium.otf) format('opentype');
  4. }
  5. @font-face {
  6. font-family: 'dinB';
  7. src: local('dinB'), url(./DIN-Bold.otf) format('opentype');
  8. }
  9. .din {
  10. font-family: "dinM" !important;
  11. /* font-size: 12px; */
  12. font-style: normal;
  13. -webkit-font-smoothing: antialiased;
  14. -moz-osx-font-smoothing: grayscale;
  15. }
  16. .dinB {
  17. font-family: "dinB" !important;
  18. /* font-size: 12px; */
  19. font-style: normal;
  20. -webkit-font-smoothing: antialiased;
  21. -moz-osx-font-smoothing: grayscale;
  22. }
  23. /*
  24. 100 - Thin
  25. 200 - Extra Light (Ultra Light)
  26. 300 - Light
  27. 400 - Regular (Normal、Book、Roman)
  28. 500 - Medium
  29. 600 - Semi Bold (Demi Bold)
  30. 700 - Bold
  31. 800 - Extra Bold (Ultra Bold)
  32. 900 - Black (Heavy)
  33. */