星火管控前端
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

1234567891011121314151617181920212223242526272829303132333435
  1. /* DIN Black 字体 */
  2. @font-face {
  3. font-family: "DIN";
  4. src: url('DIN-Black.otf?t=1713509940151') format('opentype');
  5. font-weight: 900;
  6. /* 通常为 Black 字体设置较高的权重值 */
  7. font-style: normal;
  8. }
  9. /* DIN Bold 字体 */
  10. @font-face {
  11. font-family: "DIN";
  12. src: url('DIN-Bold.otf?t=1713509940151') format('opentype');
  13. font-weight: bold;
  14. /* 通常为 Bold 字体设置 bold 权重值 */
  15. font-style: normal;
  16. }
  17. /* DIN Light 字体 */
  18. @font-face {
  19. font-family: "DIN";
  20. src: url('DIN-Light.otf?t=1713509940151') format('opentype');
  21. font-weight: normal;
  22. /* Light 字体通常使用较轻的权重值 */
  23. font-style: normal;
  24. }
  25. /* DIN Medium 字体 */
  26. @font-face {
  27. font-family: "DIN";
  28. src: url('DIN-Medium.otf?t=1713509940151') format('opentype');
  29. font-weight: 500;
  30. /* Medium 字体使用介于正常和粗体之间的权重值 */
  31. font-style: normal;
  32. }