版博士V2.0程序
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.
 
 
 
 

35 righe
456 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: #808080;
  12. opacity: 0.6;
  13. position: absolute;
  14. }
  15. .token.tab:not(:empty):before {
  16. content: '\21E5';
  17. }
  18. .token.cr:before {
  19. content: '\240D';
  20. }
  21. .token.crlf:before {
  22. content: '\240D\240A';
  23. }
  24. .token.lf:before {
  25. content: '\240A';
  26. }
  27. .token.space:before {
  28. content: '\00B7';
  29. }