8d470f98316438131949f8a1c7812111743ce7c59814a7db09a0ffbf6c63469d410906a7042cd643cfa8528eb1abdbe48806febfabc1fb65415cf38f835c14 595 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. @counter-style my-alpha {
  2. system: fixed;
  3. symbols: A B C;
  4. suffix: " ";
  5. }
  6. @COUNTER-STYLE my-alpha {
  7. system: fixed;
  8. symbols: A B C;
  9. suffix: " ";
  10. }
  11. @counter-style my-alpha {
  12. system: fixed;
  13. symbols: Ⓐ Ⓑ Ⓒ;
  14. suffix: " ";
  15. }
  16. @media (max-width: 400px) {
  17. @counter-style my-alpha {
  18. system: fixed;
  19. symbols: A B C;
  20. suffix: " ";
  21. }
  22. @supports (display: flex) {
  23. @counter-style my-alpha {
  24. system: fixed;
  25. symbols: a b c;
  26. suffix: " ";
  27. }
  28. }
  29. @counter-style my-alpha {
  30. system: fixed;
  31. symbols: Ⓐ Ⓑ Ⓒ;
  32. suffix: " ";
  33. }
  34. }