MediaWiki: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.
/* CSS placed here will be applied to all skins */
/* --- Article Maintenance Box (Ambox) Styling --- */
.ambox-maintenance {
width: 80%;
margin: 1em auto;
padding: 0.5em 1em;
background-color: #f8f9fa;
/* This is the border */
border: 1px solid #aaa;
border-left: 10px solid #f28500; /* Orange */
border-radius: 4px;
}
.create-button a {
display: inline-block;
padding: 10px 18px;
background-color: #3366ff;
color: white !important;
text-decoration: none;
border-radius: 6px;
font-weight: 600;
font-size: 0.95em;
box-shadow: 0 2px 4px rgba(0,0,0,0.15);
transition: background-color 0.2s ease, transform 0.15s ease;
}
.create-button a:hover {
background-color: #1f4fe0;
transform: translateY(-1px);
}
.create-button a:active {
background-color: #183fb8;
transform: translateY(0);
}