MediaWiki:Chameleon.css: Difference between revisions

From koreapedia
Created page with "Navbar background: .navbar.navbar-default { background-color: rgba(252, 200, 0, 0.8) !important; #fcc800 with 80% transparency: border: none !important; background-image: none !important; } Navbar links and brand: .navbar .navbar-brand, .navbar .navbar-nav > li > a { color: #111 !important; } .navbar .navbar-nav > li > a:hover, .navbar .navbar-brand:hover { color: #000 !important; }"
 
No edit summary
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* Navbar background */
.p-navbar {
.navbar.navbar-default {
    background-color: rgba(252, 200, 0, 0.4) !important; /* #fcc800 with 80% opacity */
  background-color: rgba(252, 200, 0, 0.8) !important; /* #fcc800 with 80% transparency */
    background-image: none !important; /* remove any gradient */
  border: none !important;
    border: none !important;
  background-image: none !important;
    margin-top: 10px !important;  
}
}


/* Navbar links and brand */
.flex-fill.container {
.navbar .navbar-brand,
    margin-top: 20px; /* change 20px to whatever spacing you want */
.navbar .navbar-nav > li > a {
  color: #111 !important;
}
 
.navbar .navbar-nav > li > a:hover,
.navbar .navbar-brand:hover {
  color: #000 !important;
}
}

Latest revision as of 06:30, 4 September 2025

.p-navbar {
    background-color: rgba(252, 200, 0, 0.4) !important; /* #fcc800 with 80% opacity */
    background-image: none !important; /* remove any gradient */
    border: none !important;
    margin-top: 10px !important; 
}

.flex-fill.container {
    margin-top: 20px; /* change 20px to whatever spacing you want */
}