Difference between revisions of "MediaWiki:Print.css"
Jump to navigation
Jump to search
| (46 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
| − | |||
| − | body, #globalWrapper | + | @media print { |
| − | + | ||
| + | .noprint, | ||
| + | .catlinks, | ||
| + | .magnify, | ||
| + | .mw-cite-backlink, | ||
| + | .mw-editsection, | ||
| + | .mw-editsection-like, | ||
| + | .mw-hidden-catlinks, | ||
| + | .mw-indicators, | ||
| + | .mw-redirectedfrom, | ||
| + | .patrollink, | ||
| + | .usermessage, | ||
| + | #column-one, | ||
| + | #footer-places, | ||
| + | #mw-navigation, | ||
| + | #siteNotice, | ||
| + | #f-poweredbyico, | ||
| + | #f-copyrightico, | ||
| + | li#about, | ||
| + | li#disclaimer, | ||
| + | li#mobileview, | ||
| + | li#privacy { | ||
| + | display: none; | ||
| + | } | ||
| + | |||
| + | /** | ||
| + | * Generic HTML elements | ||
| + | */ | ||
| + | body { | ||
| + | background: #fff; | ||
| + | color: #000; | ||
| + | margin: 0; | ||
| + | padding: 0; | ||
| + | } | ||
| + | |||
| + | /* Links */ | ||
| + | a { | ||
| + | background: none !important; /* stylelint-disable-line declaration-no-important */ | ||
| + | /* padding: 0 !important; */ /* stylelint-disable-line declaration-no-important */ | ||
| + | } | ||
| + | |||
| + | a, | ||
| + | a.external, | ||
| + | a.new, | ||
| + | a.stub { | ||
| + | /* IE 6 & 7 don't understand `inherit` */ | ||
| + | color: #000 !important; /* stylelint-disable-line declaration-no-important */ | ||
| + | text-decoration: none !important; /* stylelint-disable-line declaration-no-important */ | ||
| + | /* Modern browser will apply this, IE 6 & 7 ignore the unknown */ | ||
| + | color: inherit !important; /* stylelint-disable-line declaration-block-no-duplicate-properties, declaration-no-important */ | ||
| + | text-decoration: inherit !important; /* stylelint-disable-line declaration-block-no-duplicate-properties, declaration-no-important */ | ||
| + | } | ||
| + | |||
| + | /* Expand URLs for printing */ | ||
| + | .mw-parser-output a.external.text:after, | ||
| + | .mw-parser-output a.external.autonumber:after { | ||
| + | content: ' (' attr( href ) ')'; | ||
| + | word-break: break-all; | ||
| + | word-wrap: break-word; | ||
| + | } | ||
| + | |||
| + | /* Expand protocol-relative URLs for printing */ | ||
| + | .mw-parser-output a.external.text[ href^='//' ]:after, | ||
| + | .mw-parser-output a.external.autonumber[ href^='//' ]:after { | ||
| + | content: ' (https:' attr( href ) ')'; | ||
| + | } | ||
| + | |||
| + | dt { | ||
| + | font-weight: bold; | ||
| + | } | ||
| + | |||
| + | h1, | ||
| + | h2, | ||
| + | h3, | ||
| + | h4, | ||
| + | h5, | ||
| + | h6 { | ||
| + | /* font-weight: bold; */ | ||
| + | /* Pagination */ | ||
| + | page-break-after: avoid; | ||
| + | page-break-before: avoid; | ||
| + | } | ||
| + | |||
| + | p { | ||
| + | /* margin: 1em 0; | ||
| + | line-height: 1.2; */ | ||
| + | /* Pagination */ | ||
| + | orphans: 3; | ||
| + | widows: 3; | ||
| + | } | ||
| + | |||
| + | img, | ||
| + | figure, | ||
| + | .wikitable, | ||
| + | .thumb { | ||
| + | /* Pagination */ | ||
| + | page-break-inside: avoid; | ||
| + | } | ||
| + | |||
| + | img { | ||
| + | border: 0; | ||
| + | vertical-align: middle; | ||
| + | } | ||
| + | |||
| + | /* | ||
| + | pre, | ||
| + | .mw-code { | ||
| + | background: #fff; | ||
| + | color: #000; | ||
| + | border: 1pt dashed #000; | ||
| + | padding: 1em 0; | ||
| + | font-size: 8pt; | ||
| + | white-space: pre-wrap; | ||
| + | word-wrap: break-word; | ||
| + | } | ||
| + | */ | ||
| + | |||
| + | /* Prevent citations and subscripts from interfering with the line-height */ | ||
| + | sup, | ||
| + | sub { | ||
| + | /* line-height: 1; */ | ||
| + | } | ||
| + | |||
| + | ul { | ||
| + | list-style-type: square; | ||
| + | } | ||
| + | |||
| + | /** | ||
| + | * MediaWiki-specific elements | ||
| + | */ | ||
| + | #globalWrapper { | ||
| + | width: 100% !important; /* stylelint-disable-line declaration-no-important */ | ||
| + | min-width: 0 !important; /* stylelint-disable-line declaration-no-important */ | ||
| + | } | ||
| + | |||
| + | .mw-body { | ||
| + | background: #fff; | ||
| + | color: #000; | ||
| + | border: 0 !important; /* stylelint-disable-line declaration-no-important */ | ||
| + | padding: 0 !important; /* stylelint-disable-line declaration-no-important */ | ||
| + | margin: 0 !important; /* stylelint-disable-line declaration-no-important */ | ||
| + | direction: ltr; | ||
| + | } | ||
| + | |||
| + | #column-content { | ||
| + | margin: 0 !important; /* stylelint-disable-line declaration-no-important */ | ||
| + | } | ||
| + | |||
| + | #column-content .mw-body { | ||
| + | padding: 1em; | ||
| + | margin: 0 !important; /* stylelint-disable-line declaration-no-important */ | ||
| + | } | ||
| + | |||
| + | .toc { | ||
| + | background-color: #f9f9f9; | ||
| + | border: 1pt solid #aaa; | ||
| + | padding: 5px; | ||
| + | display: table; | ||
| + | } | ||
| + | |||
| + | /* Separate columns for `.tocnumber` and `.toctext` */ | ||
| + | .tocnumber, | ||
| + | .toctext { | ||
| + | display: table-cell; | ||
| + | } | ||
| + | |||
| + | /* Space between those columns */ | ||
| + | .tocnumber { | ||
| + | padding-left: 0; | ||
| + | padding-right: 0.5em; | ||
| + | } | ||
| + | |||
| + | /* @noflip */ | ||
| + | .mw-content-ltr .tocnumber { | ||
| + | padding-left: 0; | ||
| + | padding-right: 0.5em; | ||
| + | } | ||
| + | |||
| + | /* @noflip */ | ||
| + | .mw-content-rtl .tocnumber { | ||
| + | padding-left: 0.5em; | ||
| + | padding-right: 0; | ||
| + | } | ||
| + | |||
| + | /** | ||
| + | * Floating divs (and thumbnails) | ||
| + | */ | ||
| + | /* @noflip */ | ||
| + | table.floatright, | ||
| + | div.floatright, | ||
| + | div.tright { | ||
| + | float: right; | ||
| + | clear: right; | ||
| + | position: relative; | ||
| + | } | ||
| + | |||
| + | /* @noflip */ | ||
| + | table.floatleft, | ||
| + | div.floatleft, | ||
| + | div.tleft { | ||
| + | float: left; | ||
| + | clear: left; | ||
| + | position: relative; | ||
| + | } | ||
| + | |||
| + | /* @noflip */ | ||
| + | div.tleft { | ||
| + | margin: 0.5em 1.4em 1.3em 0; | ||
| + | } | ||
| + | |||
| + | /* @noflip */ | ||
| + | div.tright { | ||
| + | margin: 0.5em 0 1.3em 1.4em; | ||
| + | } | ||
| + | |||
| + | /* @noflip */ | ||
| + | table.floatright, | ||
| + | div.floatright { | ||
| + | margin: 0 0 0.5em 0.5em; | ||
| + | border: 0; | ||
| + | } | ||
| + | |||
| + | /* @noflip */ | ||
| + | table.floatleft, | ||
| + | div.floatleft { | ||
| + | margin: 0 0.5em 0.5em 0; | ||
| + | border: 0; | ||
| + | } | ||
| + | |||
| + | .center { | ||
| + | text-align: center; | ||
| + | } | ||
| + | |||
| + | /** | ||
| + | * Thumbnails | ||
| + | */ | ||
| + | div.thumb { | ||
| + | background-color: transparent; | ||
| + | width: auto; | ||
| + | } | ||
| + | |||
| + | div.thumb a { | ||
| + | border-bottom: 0; | ||
| + | } | ||
| + | |||
| + | div.thumbinner { | ||
| + | background-color: #fff; | ||
| + | border: 0; | ||
| + | border-radius: 2px; | ||
| + | padding: 5px; | ||
| + | font-size: 10pt; | ||
| + | color: #666; | ||
| + | text-align: center; | ||
| + | /* new block formatting context, | ||
| + | * to clear background from floating content */ | ||
| + | overflow: hidden; | ||
| + | min-width: 100px; | ||
| + | } | ||
| + | /* | ||
| + | html .thumbcaption { | ||
| + | text-align: left; | ||
| + | line-height: 1.4; | ||
| + | padding: 3px; | ||
| + | } | ||
| + | */ | ||
| + | img.thumbborder { | ||
| + | border: 1pt solid #ddd; | ||
| + | } | ||
| + | |||
| + | /** | ||
| + | * Table rendering | ||
| + | */ | ||
| + | /* Compare `.wikitable` in shared.css */ | ||
| + | .wikitable, | ||
| + | .mw_metadata { | ||
| + | background: #fff; | ||
| + | margin: 1em 0; | ||
| + | border: 1pt solid #aaa; | ||
| + | border-collapse: collapse; | ||
| + | font-size: 10pt; | ||
| + | } | ||
| + | |||
| + | .wikitable > caption, | ||
| + | .mw_metadata caption { | ||
| + | padding: 5px; | ||
| + | font-size: 10pt; | ||
| + | } | ||
| + | |||
| + | .wikitable > tr > th, | ||
| + | .wikitable > tr > td, | ||
| + | .wikitable > * > tr > th, | ||
| + | .wikitable > * > tr > td, | ||
| + | .mw_metadata th, | ||
| + | .mw_metadata td { | ||
| + | /* Important is required to override any inline styles provided by editors */ | ||
| + | background: #fff !important; /* stylelint-disable-line declaration-no-important */ | ||
| + | /* We need to also set color in case editors applied a light text color */ | ||
| + | color: #000 !important; /* stylelint-disable-line declaration-no-important */ | ||
| + | border: 1pt solid #aaa; | ||
| + | padding: 0.4em 0.6em; | ||
| + | } | ||
| + | |||
| + | .wikitable > tr > th, | ||
| + | .wikitable > * > tr > th, | ||
| + | .mw_metadata th { | ||
| + | text-align: center; | ||
| + | } | ||
| + | |||
| + | table.listing, | ||
| + | table.listing td { | ||
| + | border: 1pt solid #000; | ||
| + | border-collapse: collapse; | ||
} | } | ||
| − | + | ||
| − | + | /** | |
| − | + | * Categories | |
| − | + | */ | |
| + | .catlinks ul { | ||
| + | display: inline; | ||
| + | padding: 0; | ||
| + | list-style: none none; | ||
} | } | ||
| − | + | ||
| − | + | .catlinks li { | |
| − | + | display: inline-block; | |
| − | + | line-height: 1.15; | |
| + | margin: 0.1em 0; | ||
| + | border-left: 1pt solid #aaa; | ||
| + | padding: 0 0.4em; | ||
} | } | ||
| − | + | ||
| − | + | .catlinks li:first-child { | |
| − | + | border-left: 0; | |
| − | + | padding-left: 0.2em; | |
} | } | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | /* CSS placed here will affect the print output */ | ||
/* list items to blocks */ | /* list items to blocks */ | ||
| Line 24: | Line 346: | ||
padding-left: 0; | padding-left: 0; | ||
text-indent: 0; | text-indent: 0; | ||
| + | } | ||
| + | #content ul li ul li { | ||
| + | padding-left: 1em; | ||
} | } | ||
| − | + | ||
| − | |||
| − | |||
| − | |||
| − | |||
/* this via https://en.wikipedia.org/wiki/MediaWiki:Print.css, 20 Aug 2024 */ | /* this via https://en.wikipedia.org/wiki/MediaWiki:Print.css, 20 Aug 2024 */ | ||
| Line 65: | Line 386: | ||
/* On websites with siteSub visible, the margin on the firstHeading is not needed. */ | /* On websites with siteSub visible, the margin on the firstHeading is not needed. */ | ||
| + | /* | ||
#firstHeading { | #firstHeading { | ||
margin: 0; | margin: 0; | ||
} | } | ||
| + | */ | ||
/* We don't want very long URLs (that are added to the content in print) to widen the canvas */ | /* We don't want very long URLs (that are added to the content in print) to widen the canvas */ | ||
| Line 99: | Line 422: | ||
.infobox > * > tr:last-child > td { | .infobox > * > tr:last-child > td { | ||
border: 0; | border: 0; | ||
| + | } | ||
| + | |||
| + | |||
| + | |||
| + | /* undo URL expansion */ | ||
| + | |||
| + | .mw-parser-output a.external.text:after, | ||
| + | .mw-parser-output a.external.autonumber:after { | ||
| + | content: ""; | ||
| + | } | ||
| + | .mw-parser-output a.external.text[ href^='//' ]:after, | ||
| + | .mw-parser-output a.external.autonumber[ href^='//' ]:after { | ||
| + | content: ""; | ||
| + | } | ||
| + | |||
| + | |||
| + | /* align with monoskop.org/MediaWiki:Vector.css, 12.9.2024 */ | ||
| + | |||
| + | /* Fonts */ | ||
| + | body, #content, .portlet, .blocks, #content li, #content dl { font-family: fedra, Palatino, "times new roman"; } | ||
| + | body b, #content b, .portlet b, b, strong, big, dt, th, td b { font-family: fedra-bold, Palatino, "times new roman"; } | ||
| + | body i, #content i, .portlet i, i, em { font-family: fedra-italic, Palatino, "times new roman"; } | ||
| + | body b i, #content b i, .portlet b i, b i, b em { font-family: fedra-bold-italic, Palatino, "times new roman"; } | ||
| + | h1, h2, h3, h4, h5, h6, div#content div#userloginForm h2 .createaccount-join, div#content h2#filehistory, div#content h2#filelinks { font-family: enriqueta, geneva, lucida; } | ||
| + | h1 i, h2 i, h3 i, h4 i, h5 i, h6 i, #content .lede i { font-family: enriqueta, geneva, lucida; } | ||
| + | .mw-body-content .toc h2 { font-family: fedra-bold, sans-serif; } | ||
| + | |||
| + | h1, h2, h3, h4, h5, h6, div#content div#userloginForm h2 .createaccount-join { | ||
| + | margin: 0; | ||
| + | border-bottom: 1px dotted #BBB; | ||
| + | font-size: 100%; | ||
| + | font-weight: normal; | ||
| + | line-height: normal; | ||
| + | } | ||
| + | |||
| + | div#content h1#firstHeading, h1 .firstheading { | ||
| + | font-size: 1.6em; | ||
| + | border-bottom: 1px solid black; | ||
| + | font-family: enriqueta, geneva, lucida; | ||
| + | margin-top: .5em !important; | ||
| + | padding-bottom: .5em; | ||
| + | z-index: 105; | ||
| + | } | ||
| + | h2 .mw-headline, h2 .mw-version-ext, h2 .mw-headline a, div#content div#userloginForm h2 .createaccount-join { font-size: 1.05em; padding-top: 1.5em; font-family: enriqueta, geneva, lucida; } | ||
| + | h2 .mw-headline i { font-size: 1em; font-family: enriqueta, geneva, lucida; } | ||
| + | h3 .mw-headline, h3 .mw-version-ext, h3 .mw-headline a { font-size: 1.15em; font-family: enriqueta, geneva, lucida; } | ||
| + | h3 .mw-headline i { font-size: .85em; font-family: enriqueta, geneva, lucida; } | ||
| + | h4 .mw-headline, #toctitle h2 { font-size: 1.1em; font-family: enriqueta, geneva, lucida; } | ||
| + | h5 .mw-headline { font-size: 1em; font-family: enriqueta, geneva, lucida; } | ||
| + | h6 .mw-headline { font-size: 1em; font-family: enriqueta, geneva, lucida; } | ||
| + | |||
| + | dl { | ||
| + | margin-top: .5em; | ||
| + | } | ||
| + | |||
| + | .mw-body h1 { | ||
| + | line-height: 1.3; | ||
| + | margin-bottom: 0.25em; | ||
| + | padding: 0; | ||
| + | } | ||
| + | |||
| + | /* Fonts */ | ||
| + | @font-face { | ||
| + | font-family: 'fedra'; | ||
| + | src: url('https://monoskop.org/skins/monobook/fedrasanspro/fedrasanspro-light.ttf') format('truetype'); | ||
| + | font-weight: normal; | ||
| + | font-style: normal; | ||
| + | } | ||
| + | @font-face { | ||
| + | font-family: 'fedra-bold'; | ||
| + | src: url('https://monoskop.org/skins/monobook/fedrasanspro/fedrasanspro-normal.ttf') format('truetype'); | ||
| + | font-weight: bold; | ||
| + | font-style: normal; | ||
| + | } | ||
| + | @font-face { | ||
| + | font-family: 'fedra-italic'; | ||
| + | src: url('https://monoskop.org/skins/monobook/fedrasanspro/fedrasanspro-lightitalic.ttf') format('truetype'); | ||
| + | font-weight: normal; | ||
| + | font-style: italic; | ||
| + | } | ||
| + | @font-face { | ||
| + | font-family: 'fedra-bold-italic'; | ||
| + | src: url('https://monoskop.org/skins/monobook/fedrasanspro/fedrasanspro-normalitalic.ttf') format('truetype'); | ||
| + | font-weight: bold; | ||
| + | font-style: italic; | ||
| + | } | ||
| + | @font-face { | ||
| + | font-family: 'enriqueta'; | ||
| + | src: url('https://monoskop.org/skins/monobook/enriqueta/enriqueta-regular.ttf') format('truetype'); | ||
| + | font-weight: normal; | ||
| + | font-style: normal; | ||
| + | } | ||
| + | |||
| + | #mw-panel { | ||
| + | position:relative; | ||
| + | width:auto; | ||
| + | } | ||
| + | |||
| + | /* Logo */ | ||
| + | #p-logo, | ||
| + | #p-logo a, | ||
| + | #p-logo a:hover { | ||
| + | display:none; | ||
| + | } | ||
| + | |||
| + | div#mw-panel.collapsible-nav div.portal { | ||
| + | background: none !important; | ||
| + | margin: 0; | ||
| + | padding: 0; | ||
| + | } | ||
| + | div#mw-panel.collapsible-nav div.portal div.body { | ||
| + | margin: 0; | ||
| + | margin-left: 8px; | ||
| + | margin-top: -7px; | ||
| + | } | ||
| + | |||
| + | div#mw-panel div.portal div.body, div#mw-panel.collapsible-nav div.portal { | ||
| + | background: none !important; | ||
| + | .background-image('images/null.gif'); | ||
| + | padding-top: 0; | ||
| + | } | ||
| + | |||
| + | div#mw-panel div.portal div.body ul li a, | ||
| + | div#mw-panel div.portal div.body ul li a:visited, | ||
| + | div#p-personal a, div#right-navigation a, div#left-navigation a { | ||
| + | color: black !important; | ||
| + | } | ||
| + | |||
| + | /* Page body */ | ||
| + | div#content { | ||
| + | margin-top: 0; | ||
| + | padding-top: .3em; | ||
| + | padding-bottom: .3em; | ||
| + | padding-right: 0; | ||
| + | font-size: 1em; | ||
| + | color: black; | ||
| + | border-top: none; | ||
| + | border-bottom: none; | ||
| + | } | ||
| + | |||
| + | div#content a { | ||
| + | color: darkgreen; | ||
| + | } | ||
| + | div#content a.new { | ||
| + | color: #ba0000; | ||
| + | } | ||
| + | |||
| + | /* Search */ | ||
| + | #p-search { | ||
| + | top:.4em; | ||
| + | left:.4em; | ||
| + | padding:0;text-align:left; | ||
| + | margin-right:0; | ||
| + | } | ||
| + | |||
| + | div#simpleSearch { | ||
| + | height: 1.4em; | ||
| + | margin-top:.5em; | ||
| + | background-color: white; | ||
| + | padding: .2em; | ||
| + | font-size: 1em; | ||
| + | font-family: fedra, Palatino, "times new roman"; | ||
| + | -moz-border-radius: .3em; | ||
| + | border-radius: .3em; | ||
| + | } | ||
| + | |||
| + | #p-search #mw-searchButton { | ||
| + | display: none !important; | ||
| + | } | ||
| + | |||
| + | /* Top/personal menu */ | ||
| + | #p-personal { | ||
| + | position:relative; | ||
| + | top:0; | ||
| + | right:0; | ||
| + | } | ||
| + | |||
| + | #p-personal ul { | ||
| + | padding: 0; | ||
| + | text-transform: none; | ||
| + | text-align: left; | ||
| + | } | ||
| + | |||
| + | #p-personal li { | ||
| + | font-size:.8em; | ||
| + | margin-left:1em; | ||
| + | } | ||
| + | #p-personal li:first-child, #p-personal li#pt-createaccount { | ||
| + | margin-left:0 !important; | ||
| + | } | ||
| + | #pt-anonuserpage, #pt-userpage a { | ||
| + | padding-left: 0 !important; | ||
| + | } | ||
| + | |||
| + | li#pt-mytalk, li#pt-mycontris, li#pt-anontalk, li#pt-anonuserpage { | ||
| + | display: none !important; | ||
| + | } | ||
| + | |||
| + | /* Article heading */ | ||
| + | /* | ||
| + | h1#firstHeading { | ||
| + | padding-top: 0; | ||
| + | border-bottom: 1px solid #ccc; | ||
| + | z-index: 105; | ||
| + | } | ||
| + | */ | ||
| + | |||
| + | /* Article menu */ | ||
| + | #left-navigation { | ||
| + | display:none; | ||
| + | } | ||
| + | |||
| + | #right-navigation { | ||
| + | position:absolute; | ||
| + | right:0; | ||
| + | top: .5em; | ||
| + | margin-top:0; | ||
| + | margin-right:2vw; | ||
| + | padding-right:0; | ||
| + | margin-bottom:0; | ||
| + | padding-bottom:0; | ||
| + | z-index:107; | ||
| + | } | ||
| + | |||
| + | #p-namespaces li.selected, #p-views li.selected, #p-personal li.selected { | ||
| + | font-family: fedra-bold, Palatino, "times new roman"; | ||
| + | } | ||
| + | |||
| + | #p-cactions.vectorMenu, | ||
| + | #p-variants.vectorMenu, | ||
| + | li#ca-delete, li#ca-protect, | ||
| + | #p-navigation h5, #p-search h5, #p-tb h5, | ||
| + | #p-tb #t-pdf, #p-tb #t-specialpages, #p-tb #t-recentchangeslinked, #p-tb #t-smwbrowselink, | ||
| + | #p-tb #p-tb-label { | ||
| + | display: none !important; | ||
| + | } | ||
| + | |||
| + | /* For positioning icons at top-right, used in Templates "Spoken Article" and "Featured Article" */ | ||
| + | div.topicon { | ||
| + | position: absolute; | ||
| + | top: -5em; | ||
| + | margin-right: -17px; | ||
| + | display: block !important; | ||
| + | z-index: 111; | ||
| + | } | ||
| + | |||
| + | /* FR topicon position */ | ||
| + | div.flaggedrevs_short { | ||
| + | position: absolute; | ||
| + | top: -3em; | ||
| + | right: 80px; | ||
| + | z-index: 1; | ||
| + | margin-left: 0; | ||
| + | /* Because this is not yet a topicon, we emulate it's behavior, this ensure compatibility with edit lead section gadget */ | ||
| + | margin-right: -10px; | ||
| + | } | ||
| + | |||
| + | /* Article list */ | ||
| + | #content ul { | ||
| + | list-style: none; | ||
| + | padding: 0; | ||
| + | margin: .3em 0 0 .3em; | ||
| + | } | ||
| + | |||
| + | #content ul li { | ||
| + | padding-left: 1em; | ||
| + | margin-bottom: .3em; | ||
| + | text-indent: -0.9em; | ||
| + | } | ||
| + | |||
| + | #content ul li.mw-logline-newusers { | ||
| + | text-indent: 0; | ||
| + | } | ||
| + | |||
| + | #content ul.gallery { | ||
| + | max-width: unset !important; | ||
| + | } | ||
| + | |||
| + | #content ul.gallery li { /* Gallery */ | ||
| + | padding-left: 0; | ||
| + | text-indent: 0; | ||
| + | } | ||
| + | |||
| + | /* The backgrounds for galleries. */ | ||
| + | div#content .gallerybox div.thumb { | ||
| + | /* remove Light gray padding */ | ||
| + | background-color: white; | ||
| + | } | ||
| + | |||
| + | /* remove 15px margin | ||
| + | ul.gallery li.gallerybox div.thumb img { | ||
| + | margin: 0 auto; | ||
| + | } | ||
| + | */ | ||
| + | |||
| + | |||
| + | #content .dpl li:before, /* Dynamic Page List - used to list pages in categories */ | ||
| + | #content .twocol li:before, /* 2-column Dynamic Page List - used to list pages in categories */ | ||
| + | #content .dpl2 li:before, /* 2-column Dynamic Page List - used to list pages in categories */ | ||
| + | #content .threecol li:before, /* 3-column Dynamic Page List - used to list pages in categories */ | ||
| + | #content .dpl3 li:before, /* 3-column Dynamic Page List - used to list pages in categories */ | ||
| + | #content .fourcol li:before, /* 4-column Dynamic Page List - used to list pages in categories */ | ||
| + | #content .catlinks li:before, /* Category links */ | ||
| + | #content .mw-search-formheader li:before, /* Search types */ | ||
| + | #content .mw-search-results li:before, /* Search results */ | ||
| + | #content .gallery li:before, /* Gallery */ | ||
| + | #content .references li:before { /* Notes */ | ||
| + | content: none; | ||
| + | padding-right: 0; | ||
| + | } | ||
| + | |||
| + | /* doesn't work -- remove 'Categories' */ | ||
| + | #content .catlinks a:first_child { display: none !important; } | ||
| + | |||
| + | #content .catlinks li { /* Category links */ | ||
| + | padding-left: 1.7em; | ||
| + | } | ||
| + | |||
| + | /* Article References */ | ||
| + | sup { | ||
| + | font-size: .7em; | ||
| + | bottom: 1ex; | ||
| + | line-height: 1em; | ||
| + | padding-left: 0; | ||
| + | margin-left: 0; | ||
| + | } | ||
| + | |||
| + | .references-small { | ||
| + | font-size: .8em; | ||
| + | } | ||
| + | |||
| + | /* Search results */ | ||
| + | #mw-search-top-table #powerSearchText, #mw-search-top-table #searchText, #mw-search-top-table input:nth-of-type(5), | ||
| + | #mw-searchoptions, | ||
| + | .mw-search-formheader li:nth-of-type(3), .mw-search-formheader li:nth-of-type(5) { | ||
| + | display: none !important; | ||
| + | } | ||
| + | |||
| + | /* Login form */ | ||
| + | #userlogin, #userloginForm { | ||
| + | border: 0; | ||
| + | padding: 0; | ||
| + | margin: 0; | ||
| + | float: left; | ||
| + | width: 100%; | ||
| + | } | ||
| + | |||
| + | #userlogin { | ||
| + | min-width: 20em; | ||
| + | max-width: 100%; | ||
| + | } | ||
| + | |||
| + | .page-Special_UserLogin h1.firstHeading, .page-Special_UserLogin li#ca-nstab-special, | ||
| + | .page-Special_UserLogin #contentSub, #loginstart { | ||
| + | display: none !important; | ||
| + | } | ||
| + | |||
| + | div#userloginForm form h2, | ||
| + | div#userlogin form#userlogin2 h2 { | ||
| + | padding-top: 0; | ||
| + | margin-top: 0; | ||
| + | border-bottom: 1px solid #ccc; | ||
| + | margin-bottom: .1em; | ||
| + | line-height: 1.2em; | ||
| + | padding-bottom: 0; | ||
| + | font-family: enriqueta, geneva, lucida; | ||
| + | font-weight: bold; | ||
| + | font-size: 200%; | ||
| + | } | ||
| + | |||
| + | div#userloginForm form, | ||
| + | div#userlogin form#userlogin2, | ||
| + | div#userloginForm table, | ||
| + | div#userlogin form#userlogin2 table { | ||
| + | background-color: white; | ||
| + | border: 0; | ||
| + | padding: 0; | ||
| + | } | ||
| + | |||
| + | div#userlogin .captcha, | ||
| + | div#userloginForm .captcha { | ||
| + | margin-bottom: 1em; | ||
| + | padding: 1em; | ||
| + | width: 70%; | ||
| + | border: 1px solid #ccc; | ||
| + | } | ||
| + | |||
| + | /* Article Table */ | ||
| + | .toccolours { | ||
| + | background-color:#f8f9fa !important; | ||
| + | border:0; | ||
| + | padding:0; | ||
| + | -moz-border-radius:.3em; | ||
| + | border-radius:.3em; | ||
| + | } | ||
| + | |||
| + | .toccolours th { | ||
| + | border-bottom: 1px solid #ccc; | ||
| + | } | ||
| + | |||
| + | .toccolours .tocpadding { | ||
| + | padding-left: 1em; | ||
| + | padding-right: 1em; | ||
| + | } | ||
| + | |||
| + | /* Article TOC */ | ||
| + | #toc, | ||
| + | .toc, | ||
| + | .mw-warning { | ||
| + | background-color: #f8f9fa; | ||
| + | padding: 5px; | ||
| + | border: 0; | ||
| + | -moz-border-radius: .3em; | ||
| + | border-radius: .3em; | ||
| + | } | ||
| + | |||
| + | #column-content #toc ul, #toc ul, .toc ul { | ||
| + | list-style: none; | ||
| + | } | ||
| + | |||
| + | #column-content #toc ul li, #toc ul li, .toc ul li { | ||
| + | padding-left: 1.3em; | ||
| + | margin-bottom: .3em; | ||
| + | } | ||
| + | |||
| + | #column-content #toc ul li:before, #toc ul li:before, .toc ul li:before { | ||
| + | content: none; | ||
| + | } | ||
| + | |||
| + | .tocnumber, #toc ul li .toclevel-4, #toc ul li .toclevel-5, #toc ul li .toclevel-6 { | ||
| + | display: none !important; | ||
| + | } | ||
| + | |||
| + | /* Article Edit section links */ | ||
| + | h2 .mw-editsection-bracket, h3 .mw-editsection-bracket, h4 .mw-editsection-bracket, h5 .mw-editsection-bracket { | ||
| + | font-family: fedra, Palatino, "times new roman"; | ||
| + | font-weight: normal; | ||
| + | color: transparent; | ||
| + | font-size: .8em; | ||
| + | } | ||
| + | |||
| + | h2 .mw-editsection, h3 .mw-editsection, h4 .mw-editsection, h5 .mw-editsection { | ||
| + | float: right; | ||
| + | padding-top: 1.5em; | ||
| + | } | ||
| + | |||
| + | h2 .mw-editsection a, h3 .mw-editsection a, h4 .mw-editsection a, h5 .mw-editsection a { | ||
| + | font-weight: normal; | ||
| + | font-size:1.5em; | ||
| + | } | ||
| + | |||
| + | /* Article category links */ | ||
| + | .catlinks { | ||
| + | border: 0; | ||
| + | padding-top: .5em; | ||
| + | padding-bottom: .5em; | ||
| + | padding-left: .8em; | ||
| + | padding-right: .8em; | ||
| + | -moz-border-radius: .3em; | ||
| + | border-radius: .3em; | ||
| + | } | ||
| + | |||
| + | /* Bottom menu */ | ||
| + | #privacy, #disclaimer { | ||
| + | display: none !important; | ||
| + | } | ||
| + | |||
| + | /* Footer */ | ||
| + | div#footer { | ||
| + | padding-right:0; | ||
| + | padding-left:0 !important; | ||
| + | margin-top:1em !important; | ||
| + | margin-left:0; | ||
| + | bottom:0; | ||
| + | clear:both; | ||
| + | } | ||
| + | |||
| + | div#footer a { | ||
| + | color: #666; | ||
| + | } | ||
| + | |||
| + | div#footer li { | ||
| + | list-style-type:none; | ||
| + | margin:0; | ||
| + | } | ||
| + | |||
| + | div#footer ul li { | ||
| + | padding-top:0; | ||
| + | padding-bottom:0; | ||
| + | color:#666; | ||
| + | font-size: .8em; | ||
| + | } | ||
| + | |||
| + | div#footer #footer-info li, | ||
| + | div#footer #footer-icons li, | ||
| + | div#footer #footer-places li { | ||
| + | line-height: 1.5em; | ||
| + | } | ||
| + | |||
| + | #footer-poweredbyico, #f-copyrightico, li#footer-places-disclaimer, li#footer-places-privacy { | ||
| + | display: none !important; | ||
| + | } | ||
| + | |||
| + | /* QuickLink extension css - Article editor */ | ||
| + | input#QuickLinkInput { | ||
| + | font-family: fedra, Palatino, "times new roman"; | ||
| + | font-size: .8em; | ||
| + | border: 1px solid #aaa; | ||
| + | -moz-border-radius: .3em; | ||
| + | border-radius: .3em; | ||
| + | width: 15em; | ||
| + | height: 1.6em; | ||
| + | } | ||
| + | |||
| + | #QuickLinkResults { | ||
| + | padding: 0.5em 0.5em 0.5em 0.5em; | ||
| + | } | ||
| + | |||
| + | #QuickLinkResults a.selected { | ||
| + | background-color: darkgreen; | ||
| + | } | ||
| + | |||
| + | /* CategoryTree extension css - transcluded categories */ | ||
| + | .CategoryTreeLabelPage, | ||
| + | .CategoryTreeNotice, | ||
| + | .CategoryTreeParents { | ||
| + | font-style: normal; | ||
| + | } | ||
| + | |||
| + | div.reflist { font-size: 90%; } | ||
| + | |||
| + | /* imgtable - used for publication covers overviews */ | ||
| + | div#content .imgtable { | ||
| + | background-color: white; | ||
| + | border: none; | ||
| + | } | ||
| + | div#content .imgtable tr, div#content .imgtable td { | ||
| + | border: none; | ||
| + | } | ||
| + | div#content .imgtable .thumb.tright { | ||
| + | margin: 0; | ||
| + | padding: 0; | ||
| + | padding-right: .3em; | ||
| + | } | ||
| + | div#content .imgtable .thumbinner { | ||
| + | background-color: white; | ||
| + | } | ||
| + | |||
| + | //indent paragraphs in quotes | ||
| + | div#content blockquote span { | ||
| + | // text-indent: 2em ; | ||
| + | } | ||
| + | |||
| + | .allpagesredirect, | ||
| + | .redirect-in-category, | ||
| + | .watchlistredir, | ||
| + | .catlinks li a.mw-redirect { | ||
| + | font-style: normal; | ||
| + | } | ||
| + | |||
| + | .editOptions { | ||
| + | background-color: white; | ||
| + | border: 0; | ||
| + | } | ||
| + | |||
| + | div#content dl dd { | ||
| + | margin-bottom: .5em; | ||
| + | } | ||
| + | |||
| + | div#content small { | ||
| + | line-height: 0.8em; | ||
| + | } | ||
| + | |||
| + | .mw-createacct-benefits-container { | ||
| + | display: none !important; | ||
| + | |||
| + | } | ||
| + | |||
| + | table.wikitable { | ||
| + | background-color: white; | ||
| + | border-right: 0; | ||
| + | border-left: 0; | ||
| + | } | ||
| + | |||
| + | table.wikitable > tr > th, | ||
| + | table.wikitable > tr > td, | ||
| + | table.wikitable > * > tr > th, | ||
| + | table.wikitable > * > tr > td { | ||
| + | border-right: 0; | ||
| + | border-left: 0; | ||
| + | padding-right: 0.3em; | ||
| + | } | ||
| + | |||
| + | table.wikitable > tr > th, | ||
| + | table.wikitable > * > tr > th { | ||
| + | background-color: white; | ||
| + | text-align: left; | ||
| + | } | ||
| + | |||
| + | table.wikitable > tr.nobottom > th, | ||
| + | table.wikitable > tr.nobottom > td, | ||
| + | table.wikitable > * > tr.nobottom > th, | ||
| + | table.wikitable > * > tr.nobottom > td, | ||
| + | tr.nobottom, | ||
| + | .nobottom tr { | ||
| + | border-bottom: 0; | ||
| + | } | ||
| + | |||
| + | table.wikitable > tr.notop > th, | ||
| + | table.wikitable > tr.notop > td, | ||
| + | table.wikitable > * > tr.notop > th, | ||
| + | table.wikitable > * > tr.notop > td, | ||
| + | tr.notop, | ||
| + | .notop tr { | ||
| + | border-top: 0; | ||
| + | } | ||
| + | |||
| + | /* indent paragraphs in poem */ | ||
| + | div#content .poem { | ||
| + | text-indent: 2em ; | ||
| + | } | ||
| + | |||
| + | /* TOC of the file page */ | ||
| + | #mw-content-text ul#filetoc { | ||
| + | display: none !important; | ||
| + | } | ||
| + | |||
| + | /* page history, recent uploads and user contributions diff links too tight */ | ||
| + | #pagehistory .mw-changeslist-links, div#content .mw-logline-upload .mw-changeslist-links, .mw-contributions-list .mw-changeslist-links { | ||
| + | padding-left: 1em; | ||
| + | } | ||
| + | |||
| + | div#content table.mw-changeslist-line { | ||
| + | padding-left: -2em; | ||
| + | } | ||
| + | |||
| + | /* hide Help symbol and link */ | ||
| + | #mw-indicator-mw-helplink { | ||
| + | display: none; | ||
| + | } | ||
| + | |||
| + | /* ConfirmEdit QuestyCaptcha -- on Create Account */ | ||
| + | .htmlform-tip + .mw-htmlform-field-HTMLInfoField { color:blue; } | ||
| + | |||
| + | div.thumbinner { | ||
| + | border:0; | ||
| + | } | ||
| + | html .thumbcaption { | ||
| + | line-height: inherit; | ||
| + | padding-top: 0.7em; | ||
| + | } | ||
| + | .mw-body-content h3, .mw-body-content h4 { | ||
| + | font-weight: normal; | ||
| + | } | ||
| + | #mw-head { | ||
| + | position: static; | ||
| + | width:auto; | ||
| + | margin-top:1.5em; | ||
| + | margin-bottom:.2em; | ||
| + | } | ||
| + | #mw-page-base { | ||
| + | height: 0; | ||
| + | } | ||
| + | #mw-head-base { | ||
| + | height: .75em; | ||
| + | margin-top: 0em; | ||
| + | margin-left: 0; | ||
| + | } | ||
| + | #pt-anonuserpage, #pt-userpage a { | ||
| + | background: none; | ||
| + | } | ||
| + | #pt-anoncontribs { | ||
| + | display:none; | ||
| + | } | ||
| + | #ca-view { | ||
| + | display:none; | ||
| + | } | ||
| + | #mw-navigation h2 { | ||
| + | display:none; | ||
| + | } | ||
| + | .vectorTabs #ca-unwatch.icon a, .vectorTabs #ca-watch.icon a { | ||
| + | padding-top: 3.4em; | ||
| + | } | ||
| + | |||
| + | #mw-panel .portal { | ||
| + | margin: 0; | ||
| + | padding-top:0; | ||
| + | padding-bottom:0; | ||
| + | } | ||
| + | #mw-panel #p-logo + .portal { | ||
| + | margin-top: 0; | ||
| + | } | ||
| + | #mw-panel #p-logo + .portal .body { | ||
| + | margin-left: 0; | ||
| + | } | ||
| + | #mw-panel .portal .body { | ||
| + | margin-left: 0; | ||
| + | } | ||
| + | #mw-content-text li { | ||
| + | padding-top: 0em; | ||
| + | padding-bottom: 0; | ||
| + | /* font-size: .8em; */ | ||
| + | margin-left:0; | ||
| + | margin-right: 1em; | ||
| + | line-height: 1.6em; | ||
| + | } | ||
| + | #mw-content-text ul { | ||
| + | padding-top: 0; | ||
| + | } | ||
| + | #mw-content-text li:last-child { | ||
| + | margin-right:0 !important; | ||
| + | } | ||
| + | #p-navigation ul, #p-tb ul { | ||
| + | list-style: none; | ||
| + | padding:0;text-transform:none;text-align:left; | ||
| + | } | ||
| + | div#mw-navigation div#mw-panel { | ||
| + | font-size:100%; | ||
| + | } | ||
| + | #p-navigation li, #p-tb li { | ||
| + | float: left; | ||
| + | margin-top: 1em; | ||
| + | } | ||
| + | #p-navigation, #p-tb { | ||
| + | clear:both; | ||
| + | } | ||
| + | a#top { | ||
| + | content: url('https://monoskop.org/images/5/59/Monoskop_logo.jpg'); | ||
| + | display: inline-block; | ||
| + | height: 1.5em; | ||
| + | width: 1.5em; | ||
| + | float: left; | ||
| + | padding-top: .4em !important; | ||
| + | margin-right: .5em; | ||
| + | } | ||
| + | #t-permalink { | ||
| + | display:none; | ||
| + | } | ||
| + | #n-About-Monoskop { | ||
| + | display:none; | ||
| + | } | ||
| + | .vectorTabs #ca-unwatch.icon a, .vectorTabs #ca-unwatch.icon a:focus { | ||
| + | background-image:url("https://monoskop.org/images/d/d4/Following.png"); | ||
| + | background-size:.7em; | ||
| + | } | ||
| + | .vectorTabs #ca-unwatch.icon a:hover, .vectorTabs #ca-unwatch.icon a.loading { | ||
| + | background-image:url("https://monoskop.org/images/3/37/Unfollow.png"); | ||
| + | background-size:.7em; | ||
| + | } | ||
| + | .vectorTabs #ca-watch.icon a, .vectorTabs #ca-watch.icon a:hover, .vectorTabs #ca-watch.icon a:focus, .vectorTabs #ca-watch.icon a.loading { | ||
| + | background-image:url("https://monoskop.org/images/7/75/Follow.png"); | ||
| + | background-size:.7em; | ||
| + | } | ||
| + | #footer ul { | ||
| + | list-style: none; | ||
| + | } | ||
| + | div#footer li { | ||
| + | float:left; | ||
| + | margin-right: 1em; | ||
| + | } | ||
| + | .catlinks { | ||
| + | clear:none; | ||
| + | float:left; | ||
| + | } | ||
| + | .toctogglelabel { | ||
| + | color: darkgreen; | ||
| + | } | ||
| + | .infobox { | ||
| + | border: 0; | ||
| + | background-color:#f8f9fa; | ||
| + | } | ||
| + | #featured-star { | ||
| + | display:none !important; | ||
| + | } | ||
| + | .suggestions { | ||
| + | width: 20vw !important; | ||
| + | } | ||
| + | #content .twocol { | ||
| + | -moz-column-count:2; | ||
| + | -webkit-column-count:2; | ||
| + | column-count:2; | ||
| + | font-size:.95em; | ||
| + | } | ||
| + | div#content .twocol dl dd { | ||
| + | font-size:.95em; | ||
| + | } | ||
| + | #content .dpl2 { | ||
| + | -moz-column-count:2; | ||
| + | -webkit-column-count:2; | ||
| + | column-count:2; | ||
| + | } | ||
| + | #content .dpl2 ul { | ||
| + | margin-bottom: .7em; | ||
| + | } | ||
| + | #content .threecol { | ||
| + | -moz-column-count:3; | ||
| + | -webkit-column-count:3; | ||
| + | column-count:3; | ||
| + | font-size:1em; | ||
| + | font-size:.95em; | ||
| + | } | ||
| + | #content .dpl3 { | ||
| + | -moz-column-count:3; | ||
| + | -webkit-column-count:3; | ||
| + | column-count:3; | ||
| + | } | ||
| + | #content .fourcol { | ||
| + | -moz-column-count:4; | ||
| + | -webkit-column-count:4; | ||
| + | column-count:4; | ||
| + | font-size:.85em; | ||
| + | } | ||
| + | |||
| + | .catlinks li { | ||
| + | border-left: 0; | ||
| + | } | ||
| + | .mw-editfont-monospace, .mw-editfont-sans-serif, .mw-editfont-serif { | ||
| + | font-size: inherit; | ||
| + | } | ||
| + | .infobox img { | ||
| + | padding-bottom: .7em; | ||
| + | } | ||
| + | |||
| + | /* lead paragraph */ | ||
| + | .lede { | ||
| + | font-size: 1.2em; | ||
| + | font-family: enriqueta, geneva, lucida; | ||
| + | padding-bottom: .5em; | ||
| + | } | ||
| + | |||
| + | /* no column break div */ | ||
| + | .nobreak { | ||
| + | break-inside: avoid-column; | ||
| + | page-break-inside: avoid; | ||
| + | } | ||
| + | |||
| + | /* subseries in Series:Log */ | ||
| + | #mw-subcategories { | ||
| + | display: none; | ||
| + | } | ||
| + | |||
| + | /* lowercase in monoskop.org/web_archive & /websites listings */ | ||
| + | .lowercase li a { | ||
| + | text-transform: lowercase; | ||
| + | } | ||
| + | |||
| + | /* hide search results top bar */ | ||
| + | #mw-search-top-table { | ||
| + | display: none; | ||
| + | } | ||
| + | /* hide advanced search */ | ||
| + | .mw-search-profile-tabs .search-types ul li:nth-child(4) { | ||
| + | display: none; | ||
| + | } | ||
| + | |||
| + | /* semantic search results top bar */ | ||
| + | .smw-tabs #tab-label-smw-askt-edit, .smw-tabs #tab-label-smw-askt-extra { | ||
| + | display: none; | ||
| + | } | ||
| + | |||
| + | /* increase space between items in gallery */ | ||
| + | #mw-content-text ul.mw-gallery-packed-overlay li.gallerybox { | ||
| + | margin-left: 4vw; | ||
| + | margin-right: 4vw; | ||
| + | margin-bottom: 6vw; | ||
| + | } | ||
| + | |||
| + | /* convert list items to blocks */ | ||
| + | #mw-content-text .blocks ul > li { | ||
| + | padding-left: 0; | ||
| + | text-indent: 0; | ||
| + | padding-bottom: 1em; | ||
| + | break-inside: avoid-column; | ||
| + | page-break-inside: avoid; | ||
| + | } | ||
| + | |||
| + | #mw-content-text .blocks ul ul > li { | ||
| + | padding-left: 1em; | ||
| + | margin-bottom: -.6em; | ||
| + | text-indent: 0; | ||
| + | break-inside: initial; | ||
| + | page-break-inside: initial; | ||
| + | } | ||
| + | |||
| + | /* blockquotes in blocks ": " */ | ||
| + | |||
| + | #mw-content-text .blocks dl { | ||
| + | background-color: #f0ebf2 !important; | ||
| + | border-radius: 1em; | ||
| + | padding-top: 1em; | ||
| + | padding-bottom: .5em; | ||
| + | padding-right: 1em; | ||
| + | break-inside: avoid-column; | ||
| + | page-break-inside: avoid; | ||
| + | } | ||
| + | |||
| + | /* language symbol in bibliography */ | ||
| + | .blocks .languageicon { | ||
| + | font-weight: normal !important; | ||
| + | } | ||
| + | |||
| + | /* plus */ | ||
| + | |||
| + | .mw-jump-link { | ||
| + | display: none; | ||
| + | } | ||
| + | |||
| + | .mw-body-content, div#content .mw-body-content dl dd { | ||
| + | line-height: 1.6; | ||
| + | font-size: 0.875em; | ||
| + | } | ||
| + | |||
| + | pre { | ||
| + | font-size: 1.27em; | ||
| + | line-height: 1.3em; | ||
| + | } | ||
| + | |||
| + | .mw-body-content h2 { | ||
| + | font-size: 1.5em; | ||
| + | line-height: 1.3em; | ||
| + | margin-bottom: 0.25em; | ||
| + | margin-top: 1em; | ||
| + | } | ||
| + | |||
| + | #mw-content-text .gallerybox, #mw-content-text li.gallerybox div:first-of-type, #mw-content-text .thumb { | ||
| + | max-width: 100% !important; | ||
| + | } | ||
| + | |||
| + | #mw-content-text .gallerybox .thumb img, .thumb img, .gallery img, #mw-content-text video { | ||
| + | max-width: 95% !important; | ||
| + | height: auto; | ||
| + | } | ||
| + | |||
| + | #mw-content-text iframe { | ||
| + | max-width: 95% !important; | ||
| + | } | ||
| + | |||
| + | #mw-content-text .mw-parser-output .twocol .blocks dl { | ||
| + | background-color: #f0ebf2 !important; | ||
| + | } | ||
| + | |||
| + | #mw-content-text .blocks dl { | ||
| + | font-size: .8em !important; | ||
| + | } | ||
| + | |||
| + | a#top:link { | ||
| + | border-bottom: none !important; | ||
| + | text-decoration: none !important; | ||
| + | } | ||
| + | a#top[href]:after { | ||
| + | content: none !important; | ||
| + | } | ||
| + | |||
| + | div#content dl dd { | ||
| + | margin-left: 0 !important; | ||
| + | } | ||
| + | div#content dl { | ||
| + | padding-left: 1em !important; | ||
| + | } | ||
| + | |||
| + | .tocpadding p { | ||
| + | text-align: center !important; | ||
| + | font-family: "fedra"; | ||
| + | } | ||
| + | #collapsibleTable0, #collapsibleTable1 { | ||
| + | font-family: "fedra"; | ||
| + | font-size: .7em !important; | ||
| + | } | ||
| + | |||
| + | #bodyContent .printfooter { | ||
| + | padding-top: 1em; | ||
| + | font-size: .7em; | ||
| + | } | ||
| + | |||
| + | #bodyContent .printfooter, #footer-info-lastmod { | ||
| + | font-family: "fedra"; | ||
| + | font-weight: normal !important; | ||
| + | } | ||
| + | |||
| + | #footer-info-lastmod { | ||
| + | font-size: .6em !important; | ||
| + | } | ||
| + | |||
| + | #footer-info { | ||
| + | padding-left: 0 !important; | ||
| + | } | ||
| + | |||
| + | pre { | ||
| + | font-size: .9em !important; | ||
| + | line-height: 1.5em !important; | ||
| + | background-color: rgb(248,249,250); | ||
| + | } | ||
| + | |||
| + | #mw-content-text .lede p { | ||
| + | font-size: .9em !important; | ||
| + | line-height: 1.1em; | ||
| + | padding-top: 1em; | ||
| + | padding-bottom: .5em; | ||
| + | } | ||
| + | |||
} | } | ||
Latest revision as of 12:04, 18 September 2024
@media print {
.noprint,
.catlinks,
.magnify,
.mw-cite-backlink,
.mw-editsection,
.mw-editsection-like,
.mw-hidden-catlinks,
.mw-indicators,
.mw-redirectedfrom,
.patrollink,
.usermessage,
#column-one,
#footer-places,
#mw-navigation,
#siteNotice,
#f-poweredbyico,
#f-copyrightico,
li#about,
li#disclaimer,
li#mobileview,
li#privacy {
display: none;
}
/**
* Generic HTML elements
*/
body {
background: #fff;
color: #000;
margin: 0;
padding: 0;
}
/* Links */
a {
background: none !important; /* stylelint-disable-line declaration-no-important */
/* padding: 0 !important; */ /* stylelint-disable-line declaration-no-important */
}
a,
a.external,
a.new,
a.stub {
/* IE 6 & 7 don't understand `inherit` */
color: #000 !important; /* stylelint-disable-line declaration-no-important */
text-decoration: none !important; /* stylelint-disable-line declaration-no-important */
/* Modern browser will apply this, IE 6 & 7 ignore the unknown */
color: inherit !important; /* stylelint-disable-line declaration-block-no-duplicate-properties, declaration-no-important */
text-decoration: inherit !important; /* stylelint-disable-line declaration-block-no-duplicate-properties, declaration-no-important */
}
/* Expand URLs for printing */
.mw-parser-output a.external.text:after,
.mw-parser-output a.external.autonumber:after {
content: ' (' attr( href ) ')';
word-break: break-all;
word-wrap: break-word;
}
/* Expand protocol-relative URLs for printing */
.mw-parser-output a.external.text[ href^='//' ]:after,
.mw-parser-output a.external.autonumber[ href^='//' ]:after {
content: ' (https:' attr( href ) ')';
}
dt {
font-weight: bold;
}
h1,
h2,
h3,
h4,
h5,
h6 {
/* font-weight: bold; */
/* Pagination */
page-break-after: avoid;
page-break-before: avoid;
}
p {
/* margin: 1em 0;
line-height: 1.2; */
/* Pagination */
orphans: 3;
widows: 3;
}
img,
figure,
.wikitable,
.thumb {
/* Pagination */
page-break-inside: avoid;
}
img {
border: 0;
vertical-align: middle;
}
/*
pre,
.mw-code {
background: #fff;
color: #000;
border: 1pt dashed #000;
padding: 1em 0;
font-size: 8pt;
white-space: pre-wrap;
word-wrap: break-word;
}
*/
/* Prevent citations and subscripts from interfering with the line-height */
sup,
sub {
/* line-height: 1; */
}
ul {
list-style-type: square;
}
/**
* MediaWiki-specific elements
*/
#globalWrapper {
width: 100% !important; /* stylelint-disable-line declaration-no-important */
min-width: 0 !important; /* stylelint-disable-line declaration-no-important */
}
.mw-body {
background: #fff;
color: #000;
border: 0 !important; /* stylelint-disable-line declaration-no-important */
padding: 0 !important; /* stylelint-disable-line declaration-no-important */
margin: 0 !important; /* stylelint-disable-line declaration-no-important */
direction: ltr;
}
#column-content {
margin: 0 !important; /* stylelint-disable-line declaration-no-important */
}
#column-content .mw-body {
padding: 1em;
margin: 0 !important; /* stylelint-disable-line declaration-no-important */
}
.toc {
background-color: #f9f9f9;
border: 1pt solid #aaa;
padding: 5px;
display: table;
}
/* Separate columns for `.tocnumber` and `.toctext` */
.tocnumber,
.toctext {
display: table-cell;
}
/* Space between those columns */
.tocnumber {
padding-left: 0;
padding-right: 0.5em;
}
/* @noflip */
.mw-content-ltr .tocnumber {
padding-left: 0;
padding-right: 0.5em;
}
/* @noflip */
.mw-content-rtl .tocnumber {
padding-left: 0.5em;
padding-right: 0;
}
/**
* Floating divs (and thumbnails)
*/
/* @noflip */
table.floatright,
div.floatright,
div.tright {
float: right;
clear: right;
position: relative;
}
/* @noflip */
table.floatleft,
div.floatleft,
div.tleft {
float: left;
clear: left;
position: relative;
}
/* @noflip */
div.tleft {
margin: 0.5em 1.4em 1.3em 0;
}
/* @noflip */
div.tright {
margin: 0.5em 0 1.3em 1.4em;
}
/* @noflip */
table.floatright,
div.floatright {
margin: 0 0 0.5em 0.5em;
border: 0;
}
/* @noflip */
table.floatleft,
div.floatleft {
margin: 0 0.5em 0.5em 0;
border: 0;
}
.center {
text-align: center;
}
/**
* Thumbnails
*/
div.thumb {
background-color: transparent;
width: auto;
}
div.thumb a {
border-bottom: 0;
}
div.thumbinner {
background-color: #fff;
border: 0;
border-radius: 2px;
padding: 5px;
font-size: 10pt;
color: #666;
text-align: center;
/* new block formatting context,
* to clear background from floating content */
overflow: hidden;
min-width: 100px;
}
/*
html .thumbcaption {
text-align: left;
line-height: 1.4;
padding: 3px;
}
*/
img.thumbborder {
border: 1pt solid #ddd;
}
/**
* Table rendering
*/
/* Compare `.wikitable` in shared.css */
.wikitable,
.mw_metadata {
background: #fff;
margin: 1em 0;
border: 1pt solid #aaa;
border-collapse: collapse;
font-size: 10pt;
}
.wikitable > caption,
.mw_metadata caption {
padding: 5px;
font-size: 10pt;
}
.wikitable > tr > th,
.wikitable > tr > td,
.wikitable > * > tr > th,
.wikitable > * > tr > td,
.mw_metadata th,
.mw_metadata td {
/* Important is required to override any inline styles provided by editors */
background: #fff !important; /* stylelint-disable-line declaration-no-important */
/* We need to also set color in case editors applied a light text color */
color: #000 !important; /* stylelint-disable-line declaration-no-important */
border: 1pt solid #aaa;
padding: 0.4em 0.6em;
}
.wikitable > tr > th,
.wikitable > * > tr > th,
.mw_metadata th {
text-align: center;
}
table.listing,
table.listing td {
border: 1pt solid #000;
border-collapse: collapse;
}
/**
* Categories
*/
.catlinks ul {
display: inline;
padding: 0;
list-style: none none;
}
.catlinks li {
display: inline-block;
line-height: 1.15;
margin: 0.1em 0;
border-left: 1pt solid #aaa;
padding: 0 0.4em;
}
.catlinks li:first-child {
border-left: 0;
padding-left: 0.2em;
}
/* CSS placed here will affect the print output */
/* list items to blocks */
#content ul li {
padding-left: 0;
text-indent: 0;
}
#content ul li ul li {
padding-left: 1em;
}
/* this via https://en.wikipedia.org/wiki/MediaWiki:Print.css, 20 Aug 2024 */
/* Do not print */
.ns-0 .metadata, /* items in mainspace marked as metadata */
.editlink, /* section edit links */
.mw-collapsible-toggle, /* Show/hide toggles for collapsible items. */
#mw-revision-nav, /* revision navigation on a permalink */
/* Add formatting to make sure that "external references" from templates
like [[Template:Ref]] do not get URL expansion, not even when printed.
The anchor itself has class "external autonumber" and the url expansion
is inserted when printing using the ":after" pseudo-element of CSS. See
mediawiki.skinning/content.tables-print.less
*/
.nourlexpansion a.external.text::after,
.nourlexpansion a.external.autonumber::after {
display: none !important;
}
/* Uncollapse collapsible things
* See also [[phab:T152330]]
*/
.mw-parser-output .mw-collapsed,
.mw-parser-output .mw-collapsed .mw-collapsible-content,
.mw-parser-output .mw-collapsed > li,
.mw-parser-output .mw-collapsed tr {
/* fallback for browser versions that don't yet support revert
* on the support graph that's only grade C/X, so review this at a later date
*/
display: initial !important;
display: revert !important; /* revert works better for tables */
}
/* On websites with siteSub visible, the margin on the firstHeading is not needed. */
/*
#firstHeading {
margin: 0;
}
*/
/* We don't want very long URLs (that are added to the content in print) to widen the canvas */
#content a.external.text::after,
#content a.external.autonumber::after {
word-wrap: break-word;
}
/*
- Basic infobox styling
- Remove background colors, they are hard to print
*/
.infobox {
border: solid 1px #aaa;
background-color: #fff;
border-spacing: 0;
border-collapse: collapse;
width: 180pt !important; /*T174957*/
}
.infobox > * > tr > td,
.infobox > * > tr > th {
padding: 2px 5px;
border-bottom: 1px solid #EAECF0;
}
/* Reduce noise for print medium - labels may be links */
.infobox a,
/* reset last border (set above) of infobox */
.infobox > * > tr:last-child > th,
.infobox > * > tr:last-child > td {
border: 0;
}
/* undo URL expansion */
.mw-parser-output a.external.text:after,
.mw-parser-output a.external.autonumber:after {
content: "";
}
.mw-parser-output a.external.text[ href^='//' ]:after,
.mw-parser-output a.external.autonumber[ href^='//' ]:after {
content: "";
}
/* align with monoskop.org/MediaWiki:Vector.css, 12.9.2024 */
/* Fonts */
body, #content, .portlet, .blocks, #content li, #content dl { font-family: fedra, Palatino, "times new roman"; }
body b, #content b, .portlet b, b, strong, big, dt, th, td b { font-family: fedra-bold, Palatino, "times new roman"; }
body i, #content i, .portlet i, i, em { font-family: fedra-italic, Palatino, "times new roman"; }
body b i, #content b i, .portlet b i, b i, b em { font-family: fedra-bold-italic, Palatino, "times new roman"; }
h1, h2, h3, h4, h5, h6, div#content div#userloginForm h2 .createaccount-join, div#content h2#filehistory, div#content h2#filelinks { font-family: enriqueta, geneva, lucida; }
h1 i, h2 i, h3 i, h4 i, h5 i, h6 i, #content .lede i { font-family: enriqueta, geneva, lucida; }
.mw-body-content .toc h2 { font-family: fedra-bold, sans-serif; }
h1, h2, h3, h4, h5, h6, div#content div#userloginForm h2 .createaccount-join {
margin: 0;
border-bottom: 1px dotted #BBB;
font-size: 100%;
font-weight: normal;
line-height: normal;
}
div#content h1#firstHeading, h1 .firstheading {
font-size: 1.6em;
border-bottom: 1px solid black;
font-family: enriqueta, geneva, lucida;
margin-top: .5em !important;
padding-bottom: .5em;
z-index: 105;
}
h2 .mw-headline, h2 .mw-version-ext, h2 .mw-headline a, div#content div#userloginForm h2 .createaccount-join { font-size: 1.05em; padding-top: 1.5em; font-family: enriqueta, geneva, lucida; }
h2 .mw-headline i { font-size: 1em; font-family: enriqueta, geneva, lucida; }
h3 .mw-headline, h3 .mw-version-ext, h3 .mw-headline a { font-size: 1.15em; font-family: enriqueta, geneva, lucida; }
h3 .mw-headline i { font-size: .85em; font-family: enriqueta, geneva, lucida; }
h4 .mw-headline, #toctitle h2 { font-size: 1.1em; font-family: enriqueta, geneva, lucida; }
h5 .mw-headline { font-size: 1em; font-family: enriqueta, geneva, lucida; }
h6 .mw-headline { font-size: 1em; font-family: enriqueta, geneva, lucida; }
dl {
margin-top: .5em;
}
.mw-body h1 {
line-height: 1.3;
margin-bottom: 0.25em;
padding: 0;
}
/* Fonts */
@font-face {
font-family: 'fedra';
src: url('https://monoskop.org/skins/monobook/fedrasanspro/fedrasanspro-light.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'fedra-bold';
src: url('https://monoskop.org/skins/monobook/fedrasanspro/fedrasanspro-normal.ttf') format('truetype');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'fedra-italic';
src: url('https://monoskop.org/skins/monobook/fedrasanspro/fedrasanspro-lightitalic.ttf') format('truetype');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'fedra-bold-italic';
src: url('https://monoskop.org/skins/monobook/fedrasanspro/fedrasanspro-normalitalic.ttf') format('truetype');
font-weight: bold;
font-style: italic;
}
@font-face {
font-family: 'enriqueta';
src: url('https://monoskop.org/skins/monobook/enriqueta/enriqueta-regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
#mw-panel {
position:relative;
width:auto;
}
/* Logo */
#p-logo,
#p-logo a,
#p-logo a:hover {
display:none;
}
div#mw-panel.collapsible-nav div.portal {
background: none !important;
margin: 0;
padding: 0;
}
div#mw-panel.collapsible-nav div.portal div.body {
margin: 0;
margin-left: 8px;
margin-top: -7px;
}
div#mw-panel div.portal div.body, div#mw-panel.collapsible-nav div.portal {
background: none !important;
.background-image('images/null.gif');
padding-top: 0;
}
div#mw-panel div.portal div.body ul li a,
div#mw-panel div.portal div.body ul li a:visited,
div#p-personal a, div#right-navigation a, div#left-navigation a {
color: black !important;
}
/* Page body */
div#content {
margin-top: 0;
padding-top: .3em;
padding-bottom: .3em;
padding-right: 0;
font-size: 1em;
color: black;
border-top: none;
border-bottom: none;
}
div#content a {
color: darkgreen;
}
div#content a.new {
color: #ba0000;
}
/* Search */
#p-search {
top:.4em;
left:.4em;
padding:0;text-align:left;
margin-right:0;
}
div#simpleSearch {
height: 1.4em;
margin-top:.5em;
background-color: white;
padding: .2em;
font-size: 1em;
font-family: fedra, Palatino, "times new roman";
-moz-border-radius: .3em;
border-radius: .3em;
}
#p-search #mw-searchButton {
display: none !important;
}
/* Top/personal menu */
#p-personal {
position:relative;
top:0;
right:0;
}
#p-personal ul {
padding: 0;
text-transform: none;
text-align: left;
}
#p-personal li {
font-size:.8em;
margin-left:1em;
}
#p-personal li:first-child, #p-personal li#pt-createaccount {
margin-left:0 !important;
}
#pt-anonuserpage, #pt-userpage a {
padding-left: 0 !important;
}
li#pt-mytalk, li#pt-mycontris, li#pt-anontalk, li#pt-anonuserpage {
display: none !important;
}
/* Article heading */
/*
h1#firstHeading {
padding-top: 0;
border-bottom: 1px solid #ccc;
z-index: 105;
}
*/
/* Article menu */
#left-navigation {
display:none;
}
#right-navigation {
position:absolute;
right:0;
top: .5em;
margin-top:0;
margin-right:2vw;
padding-right:0;
margin-bottom:0;
padding-bottom:0;
z-index:107;
}
#p-namespaces li.selected, #p-views li.selected, #p-personal li.selected {
font-family: fedra-bold, Palatino, "times new roman";
}
#p-cactions.vectorMenu,
#p-variants.vectorMenu,
li#ca-delete, li#ca-protect,
#p-navigation h5, #p-search h5, #p-tb h5,
#p-tb #t-pdf, #p-tb #t-specialpages, #p-tb #t-recentchangeslinked, #p-tb #t-smwbrowselink,
#p-tb #p-tb-label {
display: none !important;
}
/* For positioning icons at top-right, used in Templates "Spoken Article" and "Featured Article" */
div.topicon {
position: absolute;
top: -5em;
margin-right: -17px;
display: block !important;
z-index: 111;
}
/* FR topicon position */
div.flaggedrevs_short {
position: absolute;
top: -3em;
right: 80px;
z-index: 1;
margin-left: 0;
/* Because this is not yet a topicon, we emulate it's behavior, this ensure compatibility with edit lead section gadget */
margin-right: -10px;
}
/* Article list */
#content ul {
list-style: none;
padding: 0;
margin: .3em 0 0 .3em;
}
#content ul li {
padding-left: 1em;
margin-bottom: .3em;
text-indent: -0.9em;
}
#content ul li.mw-logline-newusers {
text-indent: 0;
}
#content ul.gallery {
max-width: unset !important;
}
#content ul.gallery li { /* Gallery */
padding-left: 0;
text-indent: 0;
}
/* The backgrounds for galleries. */
div#content .gallerybox div.thumb {
/* remove Light gray padding */
background-color: white;
}
/* remove 15px margin
ul.gallery li.gallerybox div.thumb img {
margin: 0 auto;
}
*/
#content .dpl li:before, /* Dynamic Page List - used to list pages in categories */
#content .twocol li:before, /* 2-column Dynamic Page List - used to list pages in categories */
#content .dpl2 li:before, /* 2-column Dynamic Page List - used to list pages in categories */
#content .threecol li:before, /* 3-column Dynamic Page List - used to list pages in categories */
#content .dpl3 li:before, /* 3-column Dynamic Page List - used to list pages in categories */
#content .fourcol li:before, /* 4-column Dynamic Page List - used to list pages in categories */
#content .catlinks li:before, /* Category links */
#content .mw-search-formheader li:before, /* Search types */
#content .mw-search-results li:before, /* Search results */
#content .gallery li:before, /* Gallery */
#content .references li:before { /* Notes */
content: none;
padding-right: 0;
}
/* doesn't work -- remove 'Categories' */
#content .catlinks a:first_child { display: none !important; }
#content .catlinks li { /* Category links */
padding-left: 1.7em;
}
/* Article References */
sup {
font-size: .7em;
bottom: 1ex;
line-height: 1em;
padding-left: 0;
margin-left: 0;
}
.references-small {
font-size: .8em;
}
/* Search results */
#mw-search-top-table #powerSearchText, #mw-search-top-table #searchText, #mw-search-top-table input:nth-of-type(5),
#mw-searchoptions,
.mw-search-formheader li:nth-of-type(3), .mw-search-formheader li:nth-of-type(5) {
display: none !important;
}
/* Login form */
#userlogin, #userloginForm {
border: 0;
padding: 0;
margin: 0;
float: left;
width: 100%;
}
#userlogin {
min-width: 20em;
max-width: 100%;
}
.page-Special_UserLogin h1.firstHeading, .page-Special_UserLogin li#ca-nstab-special,
.page-Special_UserLogin #contentSub, #loginstart {
display: none !important;
}
div#userloginForm form h2,
div#userlogin form#userlogin2 h2 {
padding-top: 0;
margin-top: 0;
border-bottom: 1px solid #ccc;
margin-bottom: .1em;
line-height: 1.2em;
padding-bottom: 0;
font-family: enriqueta, geneva, lucida;
font-weight: bold;
font-size: 200%;
}
div#userloginForm form,
div#userlogin form#userlogin2,
div#userloginForm table,
div#userlogin form#userlogin2 table {
background-color: white;
border: 0;
padding: 0;
}
div#userlogin .captcha,
div#userloginForm .captcha {
margin-bottom: 1em;
padding: 1em;
width: 70%;
border: 1px solid #ccc;
}
/* Article Table */
.toccolours {
background-color:#f8f9fa !important;
border:0;
padding:0;
-moz-border-radius:.3em;
border-radius:.3em;
}
.toccolours th {
border-bottom: 1px solid #ccc;
}
.toccolours .tocpadding {
padding-left: 1em;
padding-right: 1em;
}
/* Article TOC */
#toc,
.toc,
.mw-warning {
background-color: #f8f9fa;
padding: 5px;
border: 0;
-moz-border-radius: .3em;
border-radius: .3em;
}
#column-content #toc ul, #toc ul, .toc ul {
list-style: none;
}
#column-content #toc ul li, #toc ul li, .toc ul li {
padding-left: 1.3em;
margin-bottom: .3em;
}
#column-content #toc ul li:before, #toc ul li:before, .toc ul li:before {
content: none;
}
.tocnumber, #toc ul li .toclevel-4, #toc ul li .toclevel-5, #toc ul li .toclevel-6 {
display: none !important;
}
/* Article Edit section links */
h2 .mw-editsection-bracket, h3 .mw-editsection-bracket, h4 .mw-editsection-bracket, h5 .mw-editsection-bracket {
font-family: fedra, Palatino, "times new roman";
font-weight: normal;
color: transparent;
font-size: .8em;
}
h2 .mw-editsection, h3 .mw-editsection, h4 .mw-editsection, h5 .mw-editsection {
float: right;
padding-top: 1.5em;
}
h2 .mw-editsection a, h3 .mw-editsection a, h4 .mw-editsection a, h5 .mw-editsection a {
font-weight: normal;
font-size:1.5em;
}
/* Article category links */
.catlinks {
border: 0;
padding-top: .5em;
padding-bottom: .5em;
padding-left: .8em;
padding-right: .8em;
-moz-border-radius: .3em;
border-radius: .3em;
}
/* Bottom menu */
#privacy, #disclaimer {
display: none !important;
}
/* Footer */
div#footer {
padding-right:0;
padding-left:0 !important;
margin-top:1em !important;
margin-left:0;
bottom:0;
clear:both;
}
div#footer a {
color: #666;
}
div#footer li {
list-style-type:none;
margin:0;
}
div#footer ul li {
padding-top:0;
padding-bottom:0;
color:#666;
font-size: .8em;
}
div#footer #footer-info li,
div#footer #footer-icons li,
div#footer #footer-places li {
line-height: 1.5em;
}
#footer-poweredbyico, #f-copyrightico, li#footer-places-disclaimer, li#footer-places-privacy {
display: none !important;
}
/* QuickLink extension css - Article editor */
input#QuickLinkInput {
font-family: fedra, Palatino, "times new roman";
font-size: .8em;
border: 1px solid #aaa;
-moz-border-radius: .3em;
border-radius: .3em;
width: 15em;
height: 1.6em;
}
#QuickLinkResults {
padding: 0.5em 0.5em 0.5em 0.5em;
}
#QuickLinkResults a.selected {
background-color: darkgreen;
}
/* CategoryTree extension css - transcluded categories */
.CategoryTreeLabelPage,
.CategoryTreeNotice,
.CategoryTreeParents {
font-style: normal;
}
div.reflist { font-size: 90%; }
/* imgtable - used for publication covers overviews */
div#content .imgtable {
background-color: white;
border: none;
}
div#content .imgtable tr, div#content .imgtable td {
border: none;
}
div#content .imgtable .thumb.tright {
margin: 0;
padding: 0;
padding-right: .3em;
}
div#content .imgtable .thumbinner {
background-color: white;
}
//indent paragraphs in quotes
div#content blockquote span {
// text-indent: 2em ;
}
.allpagesredirect,
.redirect-in-category,
.watchlistredir,
.catlinks li a.mw-redirect {
font-style: normal;
}
.editOptions {
background-color: white;
border: 0;
}
div#content dl dd {
margin-bottom: .5em;
}
div#content small {
line-height: 0.8em;
}
.mw-createacct-benefits-container {
display: none !important;
}
table.wikitable {
background-color: white;
border-right: 0;
border-left: 0;
}
table.wikitable > tr > th,
table.wikitable > tr > td,
table.wikitable > * > tr > th,
table.wikitable > * > tr > td {
border-right: 0;
border-left: 0;
padding-right: 0.3em;
}
table.wikitable > tr > th,
table.wikitable > * > tr > th {
background-color: white;
text-align: left;
}
table.wikitable > tr.nobottom > th,
table.wikitable > tr.nobottom > td,
table.wikitable > * > tr.nobottom > th,
table.wikitable > * > tr.nobottom > td,
tr.nobottom,
.nobottom tr {
border-bottom: 0;
}
table.wikitable > tr.notop > th,
table.wikitable > tr.notop > td,
table.wikitable > * > tr.notop > th,
table.wikitable > * > tr.notop > td,
tr.notop,
.notop tr {
border-top: 0;
}
/* indent paragraphs in poem */
div#content .poem {
text-indent: 2em ;
}
/* TOC of the file page */
#mw-content-text ul#filetoc {
display: none !important;
}
/* page history, recent uploads and user contributions diff links too tight */
#pagehistory .mw-changeslist-links, div#content .mw-logline-upload .mw-changeslist-links, .mw-contributions-list .mw-changeslist-links {
padding-left: 1em;
}
div#content table.mw-changeslist-line {
padding-left: -2em;
}
/* hide Help symbol and link */
#mw-indicator-mw-helplink {
display: none;
}
/* ConfirmEdit QuestyCaptcha -- on Create Account */
.htmlform-tip + .mw-htmlform-field-HTMLInfoField { color:blue; }
div.thumbinner {
border:0;
}
html .thumbcaption {
line-height: inherit;
padding-top: 0.7em;
}
.mw-body-content h3, .mw-body-content h4 {
font-weight: normal;
}
#mw-head {
position: static;
width:auto;
margin-top:1.5em;
margin-bottom:.2em;
}
#mw-page-base {
height: 0;
}
#mw-head-base {
height: .75em;
margin-top: 0em;
margin-left: 0;
}
#pt-anonuserpage, #pt-userpage a {
background: none;
}
#pt-anoncontribs {
display:none;
}
#ca-view {
display:none;
}
#mw-navigation h2 {
display:none;
}
.vectorTabs #ca-unwatch.icon a, .vectorTabs #ca-watch.icon a {
padding-top: 3.4em;
}
#mw-panel .portal {
margin: 0;
padding-top:0;
padding-bottom:0;
}
#mw-panel #p-logo + .portal {
margin-top: 0;
}
#mw-panel #p-logo + .portal .body {
margin-left: 0;
}
#mw-panel .portal .body {
margin-left: 0;
}
#mw-content-text li {
padding-top: 0em;
padding-bottom: 0;
/* font-size: .8em; */
margin-left:0;
margin-right: 1em;
line-height: 1.6em;
}
#mw-content-text ul {
padding-top: 0;
}
#mw-content-text li:last-child {
margin-right:0 !important;
}
#p-navigation ul, #p-tb ul {
list-style: none;
padding:0;text-transform:none;text-align:left;
}
div#mw-navigation div#mw-panel {
font-size:100%;
}
#p-navigation li, #p-tb li {
float: left;
margin-top: 1em;
}
#p-navigation, #p-tb {
clear:both;
}
a#top {
content: url('https://monoskop.org/images/5/59/Monoskop_logo.jpg');
display: inline-block;
height: 1.5em;
width: 1.5em;
float: left;
padding-top: .4em !important;
margin-right: .5em;
}
#t-permalink {
display:none;
}
#n-About-Monoskop {
display:none;
}
.vectorTabs #ca-unwatch.icon a, .vectorTabs #ca-unwatch.icon a:focus {
background-image:url("https://monoskop.org/images/d/d4/Following.png");
background-size:.7em;
}
.vectorTabs #ca-unwatch.icon a:hover, .vectorTabs #ca-unwatch.icon a.loading {
background-image:url("https://monoskop.org/images/3/37/Unfollow.png");
background-size:.7em;
}
.vectorTabs #ca-watch.icon a, .vectorTabs #ca-watch.icon a:hover, .vectorTabs #ca-watch.icon a:focus, .vectorTabs #ca-watch.icon a.loading {
background-image:url("https://monoskop.org/images/7/75/Follow.png");
background-size:.7em;
}
#footer ul {
list-style: none;
}
div#footer li {
float:left;
margin-right: 1em;
}
.catlinks {
clear:none;
float:left;
}
.toctogglelabel {
color: darkgreen;
}
.infobox {
border: 0;
background-color:#f8f9fa;
}
#featured-star {
display:none !important;
}
.suggestions {
width: 20vw !important;
}
#content .twocol {
-moz-column-count:2;
-webkit-column-count:2;
column-count:2;
font-size:.95em;
}
div#content .twocol dl dd {
font-size:.95em;
}
#content .dpl2 {
-moz-column-count:2;
-webkit-column-count:2;
column-count:2;
}
#content .dpl2 ul {
margin-bottom: .7em;
}
#content .threecol {
-moz-column-count:3;
-webkit-column-count:3;
column-count:3;
font-size:1em;
font-size:.95em;
}
#content .dpl3 {
-moz-column-count:3;
-webkit-column-count:3;
column-count:3;
}
#content .fourcol {
-moz-column-count:4;
-webkit-column-count:4;
column-count:4;
font-size:.85em;
}
.catlinks li {
border-left: 0;
}
.mw-editfont-monospace, .mw-editfont-sans-serif, .mw-editfont-serif {
font-size: inherit;
}
.infobox img {
padding-bottom: .7em;
}
/* lead paragraph */
.lede {
font-size: 1.2em;
font-family: enriqueta, geneva, lucida;
padding-bottom: .5em;
}
/* no column break div */
.nobreak {
break-inside: avoid-column;
page-break-inside: avoid;
}
/* subseries in Series:Log */
#mw-subcategories {
display: none;
}
/* lowercase in monoskop.org/web_archive & /websites listings */
.lowercase li a {
text-transform: lowercase;
}
/* hide search results top bar */
#mw-search-top-table {
display: none;
}
/* hide advanced search */
.mw-search-profile-tabs .search-types ul li:nth-child(4) {
display: none;
}
/* semantic search results top bar */
.smw-tabs #tab-label-smw-askt-edit, .smw-tabs #tab-label-smw-askt-extra {
display: none;
}
/* increase space between items in gallery */
#mw-content-text ul.mw-gallery-packed-overlay li.gallerybox {
margin-left: 4vw;
margin-right: 4vw;
margin-bottom: 6vw;
}
/* convert list items to blocks */
#mw-content-text .blocks ul > li {
padding-left: 0;
text-indent: 0;
padding-bottom: 1em;
break-inside: avoid-column;
page-break-inside: avoid;
}
#mw-content-text .blocks ul ul > li {
padding-left: 1em;
margin-bottom: -.6em;
text-indent: 0;
break-inside: initial;
page-break-inside: initial;
}
/* blockquotes in blocks ": " */
#mw-content-text .blocks dl {
background-color: #f0ebf2 !important;
border-radius: 1em;
padding-top: 1em;
padding-bottom: .5em;
padding-right: 1em;
break-inside: avoid-column;
page-break-inside: avoid;
}
/* language symbol in bibliography */
.blocks .languageicon {
font-weight: normal !important;
}
/* plus */
.mw-jump-link {
display: none;
}
.mw-body-content, div#content .mw-body-content dl dd {
line-height: 1.6;
font-size: 0.875em;
}
pre {
font-size: 1.27em;
line-height: 1.3em;
}
.mw-body-content h2 {
font-size: 1.5em;
line-height: 1.3em;
margin-bottom: 0.25em;
margin-top: 1em;
}
#mw-content-text .gallerybox, #mw-content-text li.gallerybox div:first-of-type, #mw-content-text .thumb {
max-width: 100% !important;
}
#mw-content-text .gallerybox .thumb img, .thumb img, .gallery img, #mw-content-text video {
max-width: 95% !important;
height: auto;
}
#mw-content-text iframe {
max-width: 95% !important;
}
#mw-content-text .mw-parser-output .twocol .blocks dl {
background-color: #f0ebf2 !important;
}
#mw-content-text .blocks dl {
font-size: .8em !important;
}
a#top:link {
border-bottom: none !important;
text-decoration: none !important;
}
a#top[href]:after {
content: none !important;
}
div#content dl dd {
margin-left: 0 !important;
}
div#content dl {
padding-left: 1em !important;
}
.tocpadding p {
text-align: center !important;
font-family: "fedra";
}
#collapsibleTable0, #collapsibleTable1 {
font-family: "fedra";
font-size: .7em !important;
}
#bodyContent .printfooter {
padding-top: 1em;
font-size: .7em;
}
#bodyContent .printfooter, #footer-info-lastmod {
font-family: "fedra";
font-weight: normal !important;
}
#footer-info-lastmod {
font-size: .6em !important;
}
#footer-info {
padding-left: 0 !important;
}
pre {
font-size: .9em !important;
line-height: 1.5em !important;
background-color: rgb(248,249,250);
}
#mw-content-text .lede p {
font-size: .9em !important;
line-height: 1.1em;
padding-top: 1em;
padding-bottom: .5em;
}
}