Spaces:
Runtime error
Runtime error
File size: 566 Bytes
885a42a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
.tokenizer-token {
cursor: pointer;
}
.tokenizer-token-0 {
background: rgba(255, 0, 0, 0.05);
}
.tokenizer-token-0:hover {
background: rgba(255, 0, 0, 0.15);
}
.tokenizer-token-1 {
background: rgba(0, 255, 0, 0.05);
}
.tokenizer-token-1:hover {
background: rgba(0, 255, 0, 0.15);
}
.tokenizer-token-2 {
background: rgba(0, 0, 255, 0.05);
}
.tokenizer-token-2:hover {
background: rgba(0, 0, 255, 0.15);
}
.tokenizer-token-3 {
background: rgba(255, 156, 0, 0.05);
}
.tokenizer-token-3:hover {
background: rgba(255, 156, 0, 0.15);
}
|