UNPKG

456 BCSSView Raw
1.token.tab:not(:empty),
2.token.cr,
3.token.lf,
4.token.space {
5 position: relative;
6}
7
8.token.tab:not(:empty):before,
9.token.cr:before,
10.token.lf:before,
11.token.space:before {
12 color: #808080;
13 opacity: 0.6;
14 position: absolute;
15}
16
17.token.tab:not(:empty):before {
18 content: '\21E5';
19}
20
21.token.cr:before {
22 content: '\240D';
23}
24
25.token.crlf:before {
26 content: '\240D\240A';
27}
28.token.lf:before {
29 content: '\240A';
30}
31
32.token.space:before {
33 content: '\00B7';
34}