MediaWiki:CustomItemTracker.css
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)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
.customItemTrackerWrapper {
display:flex;
gap:20px;
justify-content:center;
}
.customItemTracker {
width:900px;
}
.trackerGrid {
display:grid;
grid-template-columns:
repeat(8,1fr);
gap:8px;
}
.trackerTile {
background:#313e59;
border:
1px solid #596e96;
color:white;
text-align:center;
padding:10px;
cursor:pointer;
border-radius:5px;
}
.trackerTile.completed {
background:
rgba(76,175,80,0.5);
}
.itemName {
margin-top:8px;
font-size:12px;
}
.trackerProgress {
color:white;
background:#313e59;
padding:10px;
margin-bottom:10px;
text-align:center;
}
.customItemTrackerInfo {
width:300px;
background:#313e59;
color:white;
padding:10px;
border:1px solid #596e96;
}