MediaWiki:Common.css: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
Line 13: | Line 13: | ||
/* source code */ | /* source code */ | ||
pre.code | pre.code | ||
{ | |||
color: black; | |||
background: #eee; | |||
border: 0.8em solid #eee; | |||
border-radius: 6px; | |||
} | |||
span.code | |||
{ | { | ||
color: black; | color: black; | ||
Line 22: | Line 29: | ||
/* terminal commands */ | /* terminal commands */ | ||
pre.terminal | pre.terminal | ||
{ | |||
color: #ffe; | |||
background: #888; | |||
border: 0.4em solid #888; | |||
border-radius: 6px; | |||
padding-left: 6px; | |||
} | |||
span.terminal | |||
{ | { | ||
color: #ffe; | color: #ffe; |
Revision as of 2022-11-27T14:49:41
/* CSS placed here will be applied to all skins */
body.page-Main_Page .title, body.page-Main_Page #tagline
{
display: none;
}
.tocnumber
{
display: none;
}
/* source code */
pre.code
{
color: black;
background: #eee;
border: 0.8em solid #eee;
border-radius: 6px;
}
span.code
{
color: black;
background: #eee;
border: 0.8em solid #eee;
border-radius: 6px;
}
/* terminal commands */
pre.terminal
{
color: #ffe;
background: #888;
border: 0.4em solid #888;
border-radius: 6px;
padding-left: 6px;
}
span.terminal
{
color: #ffe;
background: #888;
border: 0.4em solid #888;
border-radius: 6px;
padding-left: 6px;
}