Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Citizen.css: Difference between revisions

MediaWiki interface page
Created page with "Change the color of the H1 headings: h1 { color: #FFFFFF; White: } Change the color of the H2 headings: h2 { color: #FFFFFF; White: } Change the color of the H3 headings: h3 { color: #FFFFFF; White: } Change the color of the H4 headings: h4 { color: #FFFFFF; White: } Change the color of the H5 headings: h5 { color: #FFFFFF; White: } Change the color of the H6 headings: h6 { color: #FFFFFF..."
 
No edit summary
 
(54 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* Change the color of the H1 headings */
#siteSub{ display: none !important; }
h1 {
    color: #FFFFFF; /* White */
}


/* Change the color of the H2 headings */
:root.skin-citizen-dark {
h2 {
    --font-family-citizen-base: 'Arial';
     color: #FFFFFF; /* White */
    --font-family-citizen-serif: 'Arial';
    --font-family-citizen-monospace: 'Arial';
    --color-surface-0: #333333;
    --color-surface-1: #625447;
    --color-surface-2: #4d4d4d;
    --color-base: white;
    --color-base--emphasized: white;
    --color-base--subtle: #d2d2d2;
     --border-color-base: #999999;
}
}


/* Change the color of the H3 headings */
:root.citizen-feature-custom-width-clientpref-full
h3 {
    color: #FFFFFF; /* White */
}


/* Change the color of the H4 headings */
a { color: #E59F2D; }
h4 {
a:visited { color: #E59F2D; }
    color: #FFFFFF; /* White */
a:active { color: #E59F2D; }
}
a:link { color: #E59F2D; }
a:link.external { color: #E59F2D; }
a.new { color: red; }


/* Change the color of the H5 headings */
h1 {
h5 {
     border-bottom: 1px solid #999999 !important;
     color: #FFFFFF; /* White */
    padding-bottom: 0.25em;
}
}
 
h2 {
/* Change the color of the H6 headings */
     border-bottom: 1px solid #999999 !important;
h6 {
    padding-bottom: 0.25em;
     color: #FFFFFF; /* White */
}
}

Latest revision as of 12:29, 3 August 2025

#siteSub{ display: none !important; }

:root.skin-citizen-dark {
    --font-family-citizen-base: 'Arial';
    --font-family-citizen-serif: 'Arial';
    --font-family-citizen-monospace: 'Arial';
    --color-surface-0: #333333;
    --color-surface-1: #625447;
    --color-surface-2: #4d4d4d;
    --color-base: white;
    --color-base--emphasized: white;
    --color-base--subtle: #d2d2d2;
    --border-color-base: #999999;
}

:root.citizen-feature-custom-width-clientpref-full

a { color: #E59F2D; }
a:visited { color: #E59F2D; }
a:active { color: #E59F2D; }
a:link { color: #E59F2D; }
a:link.external { color: #E59F2D; }
a.new { color: red; }

h1 {
    border-bottom: 1px solid #999999 !important;
    padding-bottom: 0.25em;
}
h2 {
    border-bottom: 1px solid #999999 !important;
    padding-bottom: 0.25em;
}