MediaWiki:Common.css: Difference between revisions

From NEOSYS Dev Wiki
Jump to navigationJump to search
(Replaced content with "→‎CSS placed here will be applied to all skins: H2 { font-weight:bold; border-bottom: 2px solid #AAA; }")
(Reduce c++ source code block size using css for syntaxhighlight extension)
Line 4: Line 4:
font-weight:bold;
font-weight:bold;
border-bottom: 2px solid #AAA;
border-bottom: 2px solid #AAA;
}
.hljs {
    padding: 5px !important; /* Reduce padding */
    margin: 5px 0 !important; /* Adjust margins */
}
pre.hljs {
    margin: 0; /* Internal margin */
}
}

Revision as of 13:08, 29 January 2025

/* CSS placed here will be applied to all skins */

H2 {
font-weight:bold;
border-bottom: 2px solid #AAA;
}

.hljs {
    padding: 5px !important; /* Reduce padding */
    margin: 5px 0 !important; /* Adjust margins */
}
pre.hljs {
    margin: 0; /* Internal margin */
}