MediaWiki:Common.css: Difference between revisions
iwu |
import droid sans mono |
||
Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
@import url(http://fonts.googleapis.com/css?family=Droid+Sans+Mono); | |||
div.mw-geshi { | div.mw-geshi { | ||
font-size: 1.2em; | font-size: 1.2em; | ||
Line 9: | Line 11: | ||
code { | code { | ||
font-family: sans-serif; | font-family: 'Droid Sans Mono',sans-serif; | ||
padding: 2px 4px; | padding: 2px 4px; | ||
font-size: 90%; | font-size: 90%; |
Revision as of 16:07, 26 February 2015
/* CSS placed here will be applied to all skins */
@import url(http://fonts.googleapis.com/css?family=Droid+Sans+Mono);
div.mw-geshi {
font-size: 1.2em;
padding: 1em;
margin: 1em 0;
border: 1px dashed #2f6fab;
background-color: #f9f9f9;
}
code {
font-family: 'Droid Sans Mono',sans-serif;
padding: 2px 4px;
font-size: 90%;
color: #FFF;
background-color: #333;
border-radius: 3px;
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
span.package {
padding: 2px 4px;
font-size: 90%;
color: #333;
background-color: #ddd;
border-radius: 3px;
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
span.shell {
white-space: nowrap;
margin: 0;
border: 1px solid #ddd;
background-color: #f8f8f8;
border-radius: 3px;
max-width: 100%;
display: inline-block;
overflow: auto;
vertical-align: middle;
line-height: 1.3;
padding: 0;
font-family: Consolas, "Liberation Mono", Courier, monospace;
font-size: 12px;
box-sizing: border-box;
text-shadow: none;
background: rgba(65,131,196,0.4);
color: #333333;
}