web/css/projets.css

37 lines
429 B
CSS
Raw Normal View History

2022-01-29 12:46:40 +01: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 01:53:30 +01:00
td {
border-left: 1px dotted black;
2024-05-16 20:28:59 +02: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;
}