MediaWiki:Common.css

From Hotline Wiki
Revision as of 03:50, 20 October 2025 by Lostarch (talk | contribs) (Created page with "→‎CSS placed here will be applied to all skins: →‎Styling for client version tags: .client-version-tag { display: inline-block; padding: 3px 8px; margin: 2px; border: 1px solid #ccc; background-color: #f8f9fa; border-radius: 4px; font-size: 90%; } .client-version-tag a { text-decoration: none; } .client-version-tag:hover { border-color: #3498db; background-color: #eaf5fc; } →‎Ensure icons are aligned with text: .client-...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump 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)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* CSS placed here will be applied to all skins */
/* Styling for client version tags */
.client-version-tag {
    display: inline-block;
    padding: 3px 8px;
    margin: 2px;
    border: 1px solid #ccc;
    background-color: #f8f9fa;
    border-radius: 4px;
    font-size: 90%;
}

.client-version-tag a {
    text-decoration: none;
}

.client-version-tag:hover {
    border-color: #3498db;
    background-color: #eaf5fc;
}

/* Ensure icons are aligned with text */
.client-version-tag img {
    vertical-align: middle;
}