blob: 3b9ba9d41d54c1baf65f93f122d3237aba5b3f62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
:root {
}
body {
}
#guesslist {
list-style: none;
[data-accept="none"] {
background: #aaa;
}
[data-accept="true"] {
background: #00ff00;
}
[data-accept="false"] {
background: #ff0000;
}
}
|