Difference between revisions of "MediaWiki: Common.css"
From Teknologisk videncenter
(New page: →CSS placed here will be applied to all skins: body.page-Main_Page h1.firstHeading { display:none; }) |
m |
||
(26 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 */ | ||
+ | #catlinks {display:block;} | ||
body.page-Main_Page h1.firstHeading { display:none; } | body.page-Main_Page h1.firstHeading { display:none; } | ||
+ | /* Added 28/3-2009 HeTh */ | ||
+ | /* default skin for navigation boxes */ | ||
+ | table.navbox { /* navbox container style */ | ||
+ | border:1px solid #aaa; | ||
+ | width:100%; | ||
+ | margin:auto; | ||
+ | clear:both; | ||
+ | font-size:88%; | ||
+ | text-align:center; | ||
+ | padding:1px; | ||
+ | } | ||
+ | table.navbox + table.navbox { | ||
+ | margin-top:-1px; /* single pixel border between adjacent navboxes (doesn't work for IE6, but that's okay) */ | ||
+ | } | ||
+ | .navbox-title, .navbox-abovebelow, table.navbox th { | ||
+ | text-align:center; /* title and above/below styles */ | ||
+ | padding-left:1em; | ||
+ | padding-right:1em; | ||
+ | } | ||
+ | .navbox-group { /* group style */ | ||
+ | white-space:nowrap; | ||
+ | text-align:right; | ||
+ | font-weight:bold; | ||
+ | padding-left:1em; | ||
+ | padding-right:1em; | ||
+ | } | ||
+ | .navbox, .navbox-subgroup { | ||
+ | background:#fdfdfd; /* Background color */ | ||
+ | } | ||
+ | .navbox-list { | ||
+ | border-color:#fdfdfd; /* Must match background color */ | ||
+ | } | ||
+ | .navbox-title, table.navbox th { | ||
+ | background:#ccccff; /* Level 1 color */ | ||
+ | } | ||
+ | .navbox-abovebelow, .navbox-group, .navbox-subgroup .navbox-title { | ||
+ | background:#ddddff; /* Level 2 color */ | ||
+ | } | ||
+ | .navbox-subgroup .navbox-group, .navbox-subgroup .navbox-abovebelow { | ||
+ | background:#e6e6ff; /* Level 3 color */ | ||
+ | } | ||
+ | .navbox-even { | ||
+ | background:#f7f7f7; /* Even row striping */ | ||
+ | } | ||
+ | .navbox-odd { | ||
+ | background:transparent; /* Odd row striping */ | ||
+ | } | ||
+ | .collapseButton { /* 'show'/'hide' buttons created dynamically by the */ | ||
+ | float: right; /* CollapsibleTables javascript in [[MediaWiki:Common.js]] */ | ||
+ | font-weight: normal; /* are styled here so they can be customised. */ | ||
+ | text-align: right; | ||
+ | width: auto; | ||
+ | } | ||
+ | .navbox .collapseButton { /* In navboxes, the show/hide button balances the vde links from */ | ||
+ | width: 6em; /* [[Template:Tnavbar]], so they need to be the same width. */ | ||
+ | } | ||
+ | /* wikitable/prettytable class for skinning normal tables */ | ||
+ | table.wikitable, | ||
+ | table.prettytable { | ||
+ | margin: 1em 1em 1em 0; | ||
+ | background: #f9f9f9; | ||
+ | border: 1px #aaa solid; | ||
+ | border-collapse: collapse; | ||
+ | } | ||
+ | .wikitable th, .wikitable td, | ||
+ | .prettytable th, .prettytable td { | ||
+ | border: 1px #aaa solid; | ||
+ | padding: 0.2em; | ||
+ | } | ||
+ | .wikitable th, | ||
+ | .prettytable th { | ||
+ | background: #f2f2f2; | ||
+ | text-align: center; | ||
+ | } | ||
+ | .wikitable caption, | ||
+ | .prettytable caption { | ||
+ | font-weight: bold; | ||
+ | } | ||
+ | |||
+ | .cli { | ||
+ | |||
+ | font-weight: bold; | ||
+ | font-size: 150%; | ||
+ | color: #00FF00; | ||
+ | background: black; | ||
+ | margin: 10px 75px; | ||
+ | } | ||
+ | .pre { | ||
+ | font-weight: normal; | ||
+ | font-size: 80%; | ||
+ | color: #000; | ||
+ | background: #f0f0f0; | ||
+ | padding: 1em; | ||
+ | margin: 0px 0px | ||
+ | } | ||
+ | .infobox th { | ||
+ | vertical-align: top; | ||
+ | /* @noflip */ | ||
+ | text-align: left; | ||
+ | } | ||
+ | /* Simplecalendar */ | ||
+ | table.progress {width:100%;white-space:nowrap;border:1px solid #666;border-width:1px 1px 0px 0px} | ||
+ | table.progress tr td {border:1px solid #666;border-width:0px 0px 1px 1px} | ||
+ | table.progress .heading td {background:#999; font-weight:heavy} | ||
+ | table.progress tr td.free {background:#fff} | ||
+ | table.progress tr td.work {background:#999} | ||
+ | table.progress tr td.freew {background:#eee} | ||
+ | table.progress tr td.workw {background:#ccc} | ||
+ | table.progress tr td.freet {background:#9ff} | ||
+ | table.progress tr td.workt {background:#3aa} | ||
+ | |||
+ | /* HeTh */ | ||
+ | img.halfwidth { | ||
+ | width: 50%; | ||
+ | height: auto; | ||
+ | } | ||
+ | img.p75 { | ||
+ | width: 75%; | ||
+ | height: auto; | ||
+ | } |
Latest revision as of 06:24, 5 October 2017
/* CSS placed here will be applied to all skins */
#catlinks {display:block;}
body.page-Main_Page h1.firstHeading { display:none; }
/* Added 28/3-2009 HeTh */
/* default skin for navigation boxes */
table.navbox { /* navbox container style */
border:1px solid #aaa;
width:100%;
margin:auto;
clear:both;
font-size:88%;
text-align:center;
padding:1px;
}
table.navbox + table.navbox {
margin-top:-1px; /* single pixel border between adjacent navboxes (doesn't work for IE6, but that's okay) */
}
.navbox-title, .navbox-abovebelow, table.navbox th {
text-align:center; /* title and above/below styles */
padding-left:1em;
padding-right:1em;
}
.navbox-group { /* group style */
white-space:nowrap;
text-align:right;
font-weight:bold;
padding-left:1em;
padding-right:1em;
}
.navbox, .navbox-subgroup {
background:#fdfdfd; /* Background color */
}
.navbox-list {
border-color:#fdfdfd; /* Must match background color */
}
.navbox-title, table.navbox th {
background:#ccccff; /* Level 1 color */
}
.navbox-abovebelow, .navbox-group, .navbox-subgroup .navbox-title {
background:#ddddff; /* Level 2 color */
}
.navbox-subgroup .navbox-group, .navbox-subgroup .navbox-abovebelow {
background:#e6e6ff; /* Level 3 color */
}
.navbox-even {
background:#f7f7f7; /* Even row striping */
}
.navbox-odd {
background:transparent; /* Odd row striping */
}
.collapseButton { /* 'show'/'hide' buttons created dynamically by the */
float: right; /* CollapsibleTables javascript in [[MediaWiki:Common.js]] */
font-weight: normal; /* are styled here so they can be customised. */
text-align: right;
width: auto;
}
.navbox .collapseButton { /* In navboxes, the show/hide button balances the vde links from */
width: 6em; /* [[Template:Tnavbar]], so they need to be the same width. */
}
/* wikitable/prettytable class for skinning normal tables */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
.wikitable th, .wikitable td,
.prettytable th, .prettytable td {
border: 1px #aaa solid;
padding: 0.2em;
}
.wikitable th,
.prettytable th {
background: #f2f2f2;
text-align: center;
}
.wikitable caption,
.prettytable caption {
font-weight: bold;
}
.cli {
font-weight: bold;
font-size: 150%;
color: #00FF00;
background: black;
margin: 10px 75px;
}
.pre {
font-weight: normal;
font-size: 80%;
color: #000;
background: #f0f0f0;
padding: 1em;
margin: 0px 0px
}
.infobox th {
vertical-align: top;
/* @noflip */
text-align: left;
}
/* Simplecalendar */
table.progress {width:100%;white-space:nowrap;border:1px solid #666;border-width:1px 1px 0px 0px}
table.progress tr td {border:1px solid #666;border-width:0px 0px 1px 1px}
table.progress .heading td {background:#999; font-weight:heavy}
table.progress tr td.free {background:#fff}
table.progress tr td.work {background:#999}
table.progress tr td.freew {background:#eee}
table.progress tr td.workw {background:#ccc}
table.progress tr td.freet {background:#9ff}
table.progress tr td.workt {background:#3aa}
/* HeTh */
img.halfwidth {
width: 50%;
height: auto;
}
img.p75 {
width: 75%;
height: auto;
}