24 lines
412 B
CSS
Raw Normal View History

2025-01-26 00:53:17 +01:00
.projects {
width: 100%;
max-width: 40em;
border-collapse: collapse;
align-self: center;
}
.projects thead {
border-bottom: solid var(--light3) 2px;
}
.projects thead th:not(:first-child) {
border-left: solid var(--light3) 2px;
}
.projects th, .projects td {
text-align: left;
padding: 0.4em 0.8em;
}
.projects tbody tr:nth-child(even) {
background-color: var(--dark2);
}