Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

33 righe
462 B

  1. .token.tab:not(:empty),
  2. .token.cr,
  3. .token.lf,
  4. .token.space {
  5. position: relative;
  6. }
  7. .token.tab:not(:empty):before,
  8. .token.cr:before,
  9. .token.lf:before,
  10. .token.space:before {
  11. color: hsl(24, 20%, 85%);
  12. position: absolute;
  13. }
  14. .token.tab:not(:empty):before {
  15. content: '\21E5';
  16. }
  17. .token.cr:before {
  18. content: '\240D';
  19. }
  20. .token.crlf:before {
  21. content: '\240D\240A';
  22. }
  23. .token.lf:before {
  24. content: '\240A';
  25. }
  26. .token.space:before {
  27. content: '\00B7';
  28. }