36 lines
429 B
CSS
36 lines
429 B
CSS
table {
|
|
border: 1px solid black;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
thead {
|
|
border-bottom: 2px solid black;
|
|
}
|
|
|
|
tr:nth-child(even) {
|
|
background-color: rgb(228, 240, 245);
|
|
}
|
|
|
|
td {
|
|
border-left: 1px dotted black;
|
|
}
|
|
|
|
.finished {
|
|
color: blueviolet;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.archived {
|
|
color: red;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.working {
|
|
color: limegreen;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.hiatus {
|
|
color: orange;
|
|
font-weight: bold;
|
|
}
|