MediaWiki:Common.css
From AnarchyMU Wiki
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.
.guide-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-top:20px;
}
.guide-card{
background:#111;
border-radius:10px;
padding:10px;
text-align:center;
transition:.2s;
border:1px solid #333;
}
.guide-card:hover{
transform:scale(1.05);
border-color:#c89b3c;
}
.guide-card img{
width:100%;
border-radius:6px;
}
.guide-card a{
color:white;
font-weight:bold;
text-decoration:none;
}