MediaWiki:Common.css: Difference between revisions
(blanked) Tag: Blanking |
No edit summary |
||
Line 1: | Line 1: | ||
/* change the box around the code feature */ | |||
code { | |||
color: #000; | |||
background-color: #f9f9f9; | |||
border: 1px solid #ddd; | |||
} | |||
pre, code, tt, kbd, samp, .mw-code { | |||
font-family: monospace,Courier; | |||
} | |||
/* make sure missing pages remain colored correctly after visiting */ | |||
a.new:visited, #p-personal a.new:visited { | |||
color: #a55858 !important; | |||
} | |||
/* change border on input forms to be 1pm, instead of 2px, and grey instead of black */ | |||
form input { | |||
/* border: 1px solid !important;*/ | |||
border-color: darkgrey !important; | |||
} | |||
#newHeading { | |||
margin-top:0;} |
Revision as of 16:53, 31 May 2019
/* change the box around the code feature */
code {
color: #000;
background-color: #f9f9f9;
border: 1px solid #ddd;
}
pre, code, tt, kbd, samp, .mw-code {
font-family: monospace,Courier;
}
/* make sure missing pages remain colored correctly after visiting */
a.new:visited, #p-personal a.new:visited {
color: #a55858 !important;
}
/* change border on input forms to be 1pm, instead of 2px, and grey instead of black */
form input {
/* border: 1px solid !important;*/
border-color: darkgrey !important;
}
#newHeading {
margin-top:0;}