MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
(backgrounds around navstuff) |
No edit summary |
||
(5 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
/* === overall site appearance == */ | |||
/* Tektronix plot background */ | /* Tektronix plot background */ | ||
body, #mw-head{ | body, #mw-head{ | ||
background: url("custom/bg.jpg"); /**/ | background: url("/custom/bg.jpg"); /**/ | ||
} | } | ||
#p-personal ul li { | #p-personal ul li { | ||
Line 13: | Line 16: | ||
#p-cactions-label { | #p-cactions-label { | ||
background: #ddffff; | background: #ddffff; | ||
} | |||
#footer { | |||
background: #ddffff; | |||
} | |||
/* hierarchical (outline-style) numbering */ | |||
ol { | |||
counter-reset: listNum; | |||
list-style-type: none; | |||
} | |||
ol > li:before { | |||
counter-increment: listNum; | |||
content: counters(listNum, ".") "."; | |||
} | |||
/* make links stand out more */ | |||
a { | |||
border-bottom: dashed 1px grey; | |||
text-shadow: -2px 2px 2px #CCC; | |||
} | } |
Latest revision as of 19:19, 13 October 2022
/* CSS placed here will be applied to all skins */
/* === overall site appearance == */
/* Tektronix plot background */
body, #mw-head{
background: url("/custom/bg.jpg"); /**/
}
#p-personal ul li {
background: #ccddff;
}
.portal { /* navigation area */
background: #ddffdd;
border: 2px solid #006600;
}
#p-cactions-label {
background: #ddffff;
}
#footer {
background: #ddffff;
}
/* hierarchical (outline-style) numbering */
ol {
counter-reset: listNum;
list-style-type: none;
}
ol > li:before {
counter-increment: listNum;
content: counters(listNum, ".") ".";
}
/* make links stand out more */
a {
border-bottom: dashed 1px grey;
text-shadow: -2px 2px 2px #CCC;
}