MediaWiki:Common.css: Difference between revisions

From Hotline Wiki
Jump to navigationJump to search
(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-...")
(No difference)

Revision as of 03:50, 20 October 2025

/* 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;
}