web/css/projets.css

37 lines
429 B
CSS
Raw Permalink Normal View History

2022-01-29 11:46:40 +00:00
table {
border: 1px solid black;
border-collapse: collapse;
}
thead {
border-bottom: 2px solid black;
}
tr:nth-child(even) {
background-color: rgb(228, 240, 245);
}
2022-03-18 00:53:30 +00:00
td {
border-left: 1px dotted black;
2024-05-16 18:28:59 +00:00
}
.finished {
color: blueviolet;
font-weight: bold;
}
.archived {
color: red;
font-weight: bold;
}
.working {
color: limegreen;
font-weight: bold;
}
.hiatus {
color: orange;
font-weight: bold;
}