MediaWiki:Common.css: Difference between revisions

From Barion Documentation
Jump to navigation Jump to search
(Created page with "→‎CSS placed here will be applied to all skins: .apitable tbody tr th { background: #1993c7; color: #fafafa; font-weight: 700; font-size: 15px; }")
 
No edit summary
Line 4: Line 4:
color: #fafafa;
color: #fafafa;
font-weight: 700;
font-weight: 700;
font-size: 15px;
}
.apitable tbody tr:nth-child(2n) td {
background: #ffffff;
color: #303030;
font-weight: 400;
font-size: 15px;
}
.apitable tbody tr:nth-child(2n+1) td {
background: #fafafa;
color: #303030;
font-weight: 400;
font-size: 15px;
font-size: 15px;
}
}

Revision as of 17:26, 2 February 2017

/* CSS placed here will be applied to all skins */
.apitable tbody tr th {
background: #1993c7;
color: #fafafa;
font-weight: 700;
font-size: 15px;
}

.apitable tbody tr:nth-child(2n) td {
background: #ffffff;
color: #303030;
font-weight: 400;
font-size: 15px;
}

.apitable tbody tr:nth-child(2n+1) td {
background: #fafafa;
color: #303030;
font-weight: 400;
font-size: 15px;
}