tr[class=“read”] {
background-image: linear-gradient(to top right, lightgrey 33%, white 100%);
}
tr[class=‘to-read’] {
background-image: linear-gradient(to top right, lightgrey 33%, white 100%);
}
tr[class=‘in-progress’] {
background-image: linear-gradient(to top right, lightgrey 33%, white 100%);
}
span {
display: inline-block;
}
tr[class=“to-read”] span[class=“status”] {
border: dotted 2px black;
padding: 3px;
background-image:linear-gradient(to right, yellow 66%, white 100%);
}
tr[class=“read”] span[class=“status”] {
border: dotted 2px black;
padding: 3px;
background-image:linear-gradient(to right,lightgreen 66%, white 100%);
}
tr[class=“in-progress”] span[class=“status”] {
border: dotted 2px black;
padding: 3px;
background-image:linear-gradient(to right,lightblue 66%, white 100%);
}
span[class=“status”],
span[class^=“rate”] {
display: inline-block;
height: 20px;
width: 60px;
padding: 2px;
}
span[class^=“rate”] > span {
border: 1px solid #000;
border-radius: 2px;
margin: 0 2px;
height: 12px;
width: 12px;
background-color: #eee;
}
span[class*=“one”] > span:first-child {
background-image: linear-gradient(to right, #66b066, #44a044);
}
span[class*=“two”] > span:nth-child(-n+2) {
background-image: linear-gradient(to right, #66b066, #44a044);
}
span[class*=“three”] > span {
background-image: linear-gradient(to right, #66b066, #44a044);
}
/ *It works in the preview, but the lab won’t accept*/


