MediaWiki:Common.css: Difference between revisions

From Healthspan Wiki
Jump to navigation Jump to search
(Created page with "→‎CSS placed here will be applied to all skins: a { color: #0d9488 !important; } a:visited { color: #14b8a6 !important; } a:hover, a:focus { color: #2dd4bf !important; } →‎Change highlight colors: .mw-highlight { background-color: #14b8a6 !important; } →‎Change other blue elements as needed: .mw-ui-progressive { background-color: #0d9488 !important; border-color: #0d9488 !important; }")
 
No edit summary
 
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
a {
a {
     color: #0d9488 !important;
     color: #14b8a6 !important;
}
}
a:visited {
a:visited {
     color: #14b8a6 !important;
     color: #0d9488 !important;
}
}
a:hover, a:focus {
a:hover, a:focus {

Latest revision as of 19:44, 16 October 2024

/* CSS placed here will be applied to all skins */
a {
    color: #14b8a6 !important;
}
a:visited {
    color: #0d9488 !important;
}
a:hover, a:focus {
    color: #2dd4bf !important;
}

/* Change highlight colors */
.mw-highlight {
    background-color: #14b8a6 !important;
}

/* Change other blue elements as needed */
.mw-ui-progressive {
    background-color: #0d9488 !important;
    border-color: #0d9488 !important;
}