Benutzer:Antonsusi/Spielwiese/styles.css
Zur Navigation springen
Zur Suche springen
table {
border-collapse: collapse;
}
tr .thead th {
padding: 1em;
border-bottom: medium solid lightblue;
}
th:first-child {
padding-left: .5em;
}
td {
text-align: center; padding:1em;
}
td:nth-child(3) {
text-align: right;
}
td:nth-child(3) {
text-align: left;
}
td:nth-child(4) {
color: red;
font-weight: bold;
}
td.paid {
color: green;
font-weight: normal;
}
td:nth-child(1)::before {
content: "Rechnung: ";
}
td:nth-child(2)::before {
content: "Datum: ";
}
td:nth-child(3)::before {
content: "Höhe: ";
}
td:nth-child(4)::before {
content: "Status: ";
}
td.paid + td::before {
content: "Zahlungseingang: ";
}