User:Sagarmatha/citizen.css
Jump to navigation
Jump to search
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* rounded borders, no inner table lines */
table.altRowsMed, table.altRowsPad {
border-radius: 15px; overflow: hidden;
border: 0px solid black;
border-collapse: collapse;
border-spacing: 0;
}
/* make even rows different color from background color */
table.altRowsMed tr.even, table.altRowsPad tr.even {
background-color: #5C5C5C;
}
/* padding so 1st column icons don't get clipped by rounded borders */
table.altRowsMed td:nth-child(1) {
padding-left: 5px
}
/* padding so icons don't get clipped by rounded borders
table.altRowsMed td, table.altRowsPad td {
padding: 8px
}*/
pre.mw-code {
counter-reset: line;
}
pre .line::before {
counter-increment: line;
content: [counter](line);
}