/***********************************************************************
** local.css for ???.ca
** adapted from pmwiki.css
**  Copyright 2004-2006 Patrick R. Michaud (pmichaud@pobox.com)
**  Copyright 2006 Hagan Fox
**  This file is part of PmWiki; you can redistribute it and/or modify
**  it under the terms of the GNU General Public License as published
**  by the Free Software Foundation; either version 2 of the License, or
**  (at your option) any later version.  See pmwiki.php for full details.
***********************************************************************/

/* Global Variables - Change your color here once to update the whole site */
:root {
    --brand-color: #46659e;
}

/*These adjust the colour of heading elements */
 h1, h2, h3, h4, h5, h6 { color: var(--brand-color); }

/* Force the main header container to span 100% width and set its background */
#wikihead {
    width: 100%;
    background-color: var(--brand-color); 
}
 
/* These affect the lines at the very bottom. */
#wikifoot { 
  background-color: var(--brand-color);
    clear: both !important;
    display: block !important;
    width: 100% !important;
}

/* Hide header search form, recent changes, and toggles */
#wikihead-searchform, 
#wikihead-search-toggle, 
#wikihead-search-toggle-label,
input#wikihead-search-toggle,
input#wikicmds-toggle {
    display: none !important;
}

/* Hide top action links and mobile labels */
#wikicmds, 
#wikicmds-toggle, 
#wikicmds-toggle-label,
label[for='wikicmds-toggle'] {
    display: none !important;
}

/* Hide breadcrumb group link above title */
#wikititle .pagegroup {
    display: none !important;
}

/* Hide bottom footer action links */
#wikifoot-links {
    display: none !important;
}

/* Force H2 headings in the sidebar to be extra bold */
#wikileft h2 {
    font-weight: bold !important;
}

/* Invert only an inline hamburger SVG or background image icon */
#wikileft-toggle-label {
    filter: invert(1) grayscale(1) brightness(2);
    /* Note: Do NOT add a background-color here */
}