Difference between revisions of "MediaWiki:Common.css"
From IokeWiki
Line 5: | Line 5: | ||
font-family:Arial, Verdana, Sans-Serif; | font-family:Arial, Verdana, Sans-Serif; | ||
background: #fff; | background: #fff; | ||
+ | } | ||
+ | |||
+ | a[href] { | ||
+ | font-family: Helvetica Neue, Helvetica, Arial, sans-serif; | ||
+ | color: #000; | ||
+ | text-decoration: none; | ||
+ | font-size: 1.1em; | ||
+ | } | ||
+ | |||
+ | a[href]:hover { | ||
+ | text-decoration: underline; | ||
+ | } | ||
+ | |||
+ | a.selectedMenuItem { | ||
+ | font-weight: bold; | ||
+ | } | ||
+ | |||
+ | a.unselectedMenuItem { | ||
+ | font-weight:normal; | ||
+ | } | ||
+ | |||
+ | dt, .code { | ||
+ | font-family: courier; | ||
+ | color: black; | ||
+ | } | ||
+ | |||
+ | pre.code { | ||
+ | display: block; | ||
+ | background-color: black; | ||
+ | color: white; | ||
+ | font-family: courier; | ||
+ | margin:.75em 0; | ||
+ | border:1px dotted #ccc; | ||
+ | border-width:1px 0; | ||
+ | padding:5px 15px; | ||
+ | overflow:auto; | ||
+ | font-size:1.0em; | ||
} | } |
Revision as of 14:42, 23 January 2009
/* CSS placed here will be applied to all skins */
body, td, p {
color: #444;
font-family:Arial, Verdana, Sans-Serif;
background: #fff;
}
a[href] {
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
color: #000;
text-decoration: none;
font-size: 1.1em;
}
a[href]:hover {
text-decoration: underline;
}
a.selectedMenuItem {
font-weight: bold;
}
a.unselectedMenuItem {
font-weight:normal;
}
dt, .code {
font-family: courier;
color: black;
}
pre.code {
display: block;
background-color: black;
color: white;
font-family: courier;
margin:.75em 0;
border:1px dotted #ccc;
border-width:1px 0;
padding:5px 15px;
overflow:auto;
font-size:1.0em;
}