User:AlphSpirit/common.css: Difference between revisions

No edit summary
No edit summary
 
(42 intermediate revisions by the same user not shown)
Line 1: Line 1:
.tsTable {
.tsTableCell:nth-child(1) {
display: inline-block;
background-color: red;
border: 2px ridge #5b8680;
border-radius: 4px;
}
.tsTableGrid {
display: grid;
}
.tsTableGrid3 {
grid-template-columns: auto auto auto;
}
.tsTableGrid3 .tsTableCell:nth-child(3n+1) {
border-right: 1px solid #5b8680;
}
.tsTableGrid3 .tsTableCell:nth-child(3n+2) {
border-right: 1px solid #5b8680;
}
.tsTableHeader, .tsTableCell {
padding: 0 0.5rem;
line-height: 2;
}
.tsTableHeader {
background-color: #809e95;
font-weight: bold;
color: white;
}
}