MediaWiki:Common.css: Difference between revisions

From Borsheim Crane Service Wiki
Created page with "Borsheim red corporate styling: .navbar-default { background-color: #c41e3a !important; border: none !important; } .navbar-default .navbar-brand { color: white !important; font-weight: bold; } .navbar-default .navbar-brand:hover { color: #f8f9fa !important; } .navbar-default .navbar-nav > li > a { color: white !important; } .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { background-color: rgba(..."
 
No edit summary
Line 1: Line 1:
/* Borsheim red corporate styling */
/* Borsheim red corporate styling */
body {
    background-color: red !important;
}
.navbar-default {
.navbar-default {
     background-color: #c41e3a !important;
     background-color: #c41e3a !important;

Revision as of 17:24, 3 June 2025

/* Borsheim red corporate styling */
body {
    background-color: red !important;
}
.navbar-default {
    background-color: #c41e3a !important;
    border: none !important;
}

.navbar-default .navbar-brand {
    color: white !important;
    font-weight: bold;
}

.navbar-default .navbar-brand:hover {
    color: #f8f9fa !important;
}

.navbar-default .navbar-nav > li > a {
    color: white !important;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
    background-color: rgba(255,255,255,0.1) !important;
    color: #f8f9fa !important;
}

.navbar-default .navbar-nav > .active > a {
    background-color: rgba(255,255,255,0.2) !important;
    color: white !important;
}

/* Red buttons */
.btn-primary {
    background-color: #c41e3a;
    border-color: #a91729;
}

.btn-primary:hover {
    background-color: #a91729;
    border-color: #8b1423;
}

/* Red links */
a {
    color: #c41e3a;
}

a:hover {
    color: #a91729;
}