Last active
August 29, 2015 13:56
-
-
Save marijnvdwerf/9080008 to your computer and use it in GitHub Desktop.
Readable Wikipedia
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#mw-page-base { | |
height: 90px; | |
background: #f2f2f2; | |
} | |
#mw-head-base { | |
height: 59px; | |
margin: 0; | |
border-bottom: 2px solid #F2F2F2; | |
background: #FFF; | |
} | |
#mw-navigation { | |
position: absolute; | |
top: 0; | |
right: 0; | |
left: 0; | |
width: 1202px; | |
margin: 0 auto; | |
} | |
div#mw-head { | |
position: static; | |
height: 90px; | |
} | |
div#mw-panel { | |
width: 100%; | |
padding: 0; | |
} | |
#mw-panel #p-logo { | |
top: 0; | |
height: 90px; | |
} | |
#mw-panel #p-logo a { | |
height: 22px; | |
padding: 34px 0; | |
background-position: 50% -79px; | |
background-clip: content-box; | |
} | |
#mw-panel #p-navigation { | |
margin: 0 !important; | |
padding: 0 !important; | |
} | |
#mw-panel #p-navigation ul { | |
overflow: auto; | |
} | |
#mw-panel #p-navigation li { | |
float: left; | |
margin: 0; | |
padding: 0; | |
font-size: 14px; | |
line-height: 59px; | |
} | |
#mw-panel #p-navigation li a { | |
display: block; | |
padding: 0 12px; | |
} | |
#p-interaction, | |
#p-tb, | |
#p-coll-print_export, | |
#p-navigation2, | |
#p-project { | |
display: none; | |
} | |
a { | |
color: #157fe6; | |
} | |
a:visited { | |
color: #1165b7; | |
} | |
body { | |
background: #fff; | |
} | |
#toc { | |
margin: 60px 0; | |
padding: 28px; | |
border: 2px solid #EEE; | |
font-size: 14px; | |
line-height: 24px; | |
} | |
#toc #toctitle { | |
margin: 0 0 24px; | |
text-align: left; | |
font-size: 16px; | |
} | |
#toc li { | |
margin: 0; | |
line-height: 24px; | |
} | |
#firstHeading { | |
margin: 60px 0; | |
border: none; | |
font-family: georgia; | |
font-size: 36px; | |
webkit-font-smoothing: antialiased; | |
} | |
div#content { | |
width: 586px; | |
margin: 0 auto; | |
padding: 0; | |
border: none; | |
background: rgba(0, 0, 0, 0); | |
} | |
div#mw-panel { | |
position: static; | |
} | |
#bodyContent { | |
width: 586px; | |
font-size: 18px; | |
font-weight: 200; | |
line-height: 30px; | |
} | |
.infobox, | |
.vertical-navbox { | |
float: none!important; | |
box-sizing: border-box; | |
min-width: 434px; | |
margin: 0 auto !important; | |
padding: 28px !important; | |
border: 2px solid #EFEFEF; | |
font-size: 14px; | |
font-size: 90%; | |
} | |
#catlinks { | |
box-sizing: border-box; | |
padding: 8px 28px; | |
border: 2px solid #EFEFEF; | |
font-size: 17px; | |
} | |
#mw-content-text > h3 { | |
margin: 60px 0 30px; | |
font-family: georgia; | |
font-size: 24px; | |
font-weight: normal; | |
} | |
div#footer { | |
position: static; | |
left: 0; | |
margin: 0 !important; | |
padding: 30px 0 90px; | |
color: #FFF; | |
background: #131313; | |
} | |
div#footer ul li { | |
color: #666; | |
} | |
div#footer a { | |
color: #fff; | |
} | |
div#simpleSearch { | |
box-sizing: border-box; | |
width: 586px; | |
height: 40px; | |
margin: 0; | |
border: none; | |
border-radius: 3px; | |
background: #FFF; | |
} | |
#mw-content-text > h2 { | |
margin: 90px 0 30px; | |
padding: 58px 0 30px; | |
border: none; | |
border-top: 2px solid #efefef; | |
font-family: Georgia; | |
font-size: 36px; | |
line-height: 30px; | |
} | |
#mw-content-text p { | |
margin: 30px 0 0; | |
line-height: 30px; | |
} | |
#mw-content-text ul { | |
margin: 0; | |
line-height: 30px; | |
} | |
#mw-content-text > table { | |
clear: both; | |
width: 100%; | |
} | |
.thumb.tright, | |
.thumb.tleft { | |
float: none; | |
clear: both; | |
width: 436px; | |
} | |
@media only screen and (min-width: 1268px) { | |
div#content { | |
width: 1204px; | |
} | |
.thumb.tright, | |
.thumb.tleft { | |
float: right; | |
margin-right: -620px !important; | |
} | |
.thumb > .thumbinner { | |
width: auto !important; | |
} | |
#catlinks, | |
.navigatiesjabloon { | |
width: 1204px; | |
} | |
#mw-content-text > table { | |
min-width: 1204px !important; | |
} | |
#mw-content-text .infobox, | |
#mw-content-text .vertical-navbox { | |
float: right !important; | |
min-width: 434px !important; | |
margin-right: -620px !important; | |
} | |
} | |
.navigatiesjabloon { | |
border: 2px solid #DDEEF8; | |
background: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment