MediaWiki:Common.css: Difference between revisions
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
/* === | /* === Custom Logo for Vector 2022 === */ | ||
#p-logo { | |||
-- | background-image: url('/resources/assets/transight-logo.jpg'); /* Ensure this path is correct */ | ||
-- | background-size: contain; | ||
background-repeat: no-repeat; | |||
width: 200px; | |||
height: 60px; | |||
margin-left: 20px; | |||
z-index: 10; | |||
} | } | ||
/* | /* Hide the default MediaWiki logo (text) */ | ||
.vector-header | .vector-header .mw-wiki-logo { | ||
display: none; | |||
. | |||
} | } | ||
/* === | /* === Make entire top header burgundy === */ | ||
.vector- | .vector-header-container { | ||
background-color: #800020 !important; | background-color: #800020 !important; | ||
} | } | ||
/* === | /* === Set all page link colors to burgundy === */ | ||
a, a:visited { | |||
color: #800020 !important; | |||
color: | |||
} | } | ||
/* === | /* === Active link on hover === */ | ||
a:hover { | |||
color: #a02c3c !important; | |||
} | } | ||
Revision as of 05:43, 23 June 2025
/* === Custom Logo for Vector 2022 === */
#p-logo {
background-image: url('/resources/assets/transight-logo.jpg'); /* Ensure this path is correct */
background-size: contain;
background-repeat: no-repeat;
width: 200px;
height: 60px;
margin-left: 20px;
z-index: 10;
}
/* Hide the default MediaWiki logo (text) */
.vector-header .mw-wiki-logo {
display: none;
}
/* === Make entire top header burgundy === */
.vector-header-container {
background-color: #800020 !important;
}
/* === Set all page link colors to burgundy === */
a, a:visited {
color: #800020 !important;
}
/* === Active link on hover === */
a:hover {
color: #a02c3c !important;
}