Difference between revisions of "MediaWiki:Darkvector.css"

From Captain of Industry Wiki
Jump to: navigation, search
(Restore font size from 0.875em to full size)
 
(Stylize code blocks in this skin)
Line 4: Line 4:
.mw-body-content {
.mw-body-content {
   font-size: 1em;
   font-size: 1em;
}
/* Style <code> blocks */
code {
    width: auto;
    height: auto;
    padding: .2em;
    margin: -.2em 0;
    border: none;
    border-radius: 5px;
    font-family: Consolas, Andale Mono WT, DejaVu Sans Mono, Ubuntu Monospace, Courier New, monospace;
    text-indent: 0;
    white-space: pre-wrap;
    background-color: rgba(128,128,128,0.25);
}
}

Revision as of 21:48, 18 January 2022

/* CSS placed here will affect users of the DarkVector skin */

/* Restore font size from 0.875em to full size */
.mw-body-content {
  font-size: 1em;
}

/* Style <code> blocks */
code {
    width: auto;
    height: auto;
    padding: .2em;
    margin: -.2em 0;
    border: none;
    border-radius: 5px;
    font-family: Consolas, Andale Mono WT, DejaVu Sans Mono, Ubuntu Monospace, Courier New, monospace;
    text-indent: 0;
    white-space: pre-wrap;
    background-color: rgba(128,128,128,0.25);
}