User:Exkc/common.css
Appearance
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.
// cargoTable border max-height
.cargoTable {
max-height: 80vh;
border: 1px solid #a2a9b1;
}
// cargoTable sticky headers
.cargoTable thead th {
position: sticky;
top: -1px;
}
/* Make infoboxes fill the entire page on small screens (also increases the font size a bit) */
@media (max-width: 768px) {
.infobox {
float: none;
clear: none;
margin-left: 0;
width: 100% !important;
font-size: 1.15em;
}
}
/* Make userbox containers on user pages fill the entire page on small screens */
@media (max-width: 500px) {
.userbox-container {
float: none !important;
clear: none;
width: 100%;
}
}