Guest User

Untitled

a guest
Sep 23rd, 2015
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.40 KB | None | 0 0
  1. /*
  2.  * Style by Lupurus
  3.  */
  4.  
  5. @namespace url(http://www.w3.org/1999/xhtml);
  6.  
  7. @-moz-document domain("wikipedia.org") {
  8.  
  9. }
  10.  
  11.  
  12. @-moz-document regexp("(.*wikipedia.org/wiki/(?!.*:)(?!Main_Page).*)|(.*secure.wikimedia.org/wikipedia/../wiki/(?!.*:)(?!Main_Page).*)") {
  13.    
  14.    
  15. /* unvisited link */
  16. a:link {
  17.     color: #8fa1b3;
  18. }
  19.  
  20. /* visited link */
  21. a:visited {
  22.     color: #8fa1b3;
  23. }    
  24.    
  25. /* hover link */
  26. a:hover {
  27.     color: #8fa1b3;
  28. }  
  29.  
  30.  
  31. #firstHeading {
  32.     width: 600px !important;
  33.     text-align: center !important;
  34.     font-size: 4em !important;
  35.     -moz-hyphens: auto;
  36.     -webkit-hyphens: auto;
  37.     font-weight: bold !important;
  38. }
  39. #firstHeading i:first-child {
  40.     font-style: normal !important;
  41. }
  42. #firstHeading, h1, h2, h3, h4 {
  43.     font-family: serif !important;
  44. }
  45.  
  46. #bodyContent {
  47.     width: 600px !important;
  48.     text-align: justify;
  49.     font-family: serif !important;
  50.     font-size: 10pt !important;
  51. }
  52.  
  53. /*
  54.  * border around the article
  55.  */
  56. #content {
  57.    
  58.     margin: auto !important;
  59.     width: 600px !important;
  60.     padding: 80px !important;
  61.     padding-top: 20px !important;
  62.     border: 1px !important;
  63. }
  64.  
  65. body {
  66.     background: #ffffff !important;
  67. }
  68.  
  69. #content {
  70.     background: #FFF !important;    /* removes the border of the menu */
  71. }
  72.  
  73. /* margins */
  74. .infobox, .tright, .vertical-navbox {
  75.     margin: 0 0 0.5em 2em !important;
  76. }
  77. .tleft {
  78.     margin: 0 2em 0.5em 0 !important;
  79. }
  80.  
  81. /*
  82.  * hide things
  83.  *
  84.  */
  85.  
  86. #p-personal, #left-navigation, #mw-head-base, #mw-page-base, #p-views, #footer, #mw-indicator-pp-default {
  87.     display: none !important;
  88. }
  89.  
  90. /*
  91.  * searchbar
  92.  */
  93.  
  94. #mw-head {
  95.     height: 32px;
  96.     position: fixed !important;
  97.     background: #eeeeee;
  98. }
  99.    
  100. #content {
  101.     margin-top: 32px !important;
  102. }
  103. #simpleSearch {
  104.     color: #cc6666 !important;
  105.     margin-top: 6px !important;
  106.     margin-left: 15px !important;
  107.     width: 500px !important;
  108.     border: 0px !important;
  109.     background-color: #eeeeee !important;
  110. }
  111. .imeselector {
  112.     display: none !important;
  113. }
  114.  
  115. #mw-panel {
  116.     opacity: 0;
  117.     top: 195px !important;
  118. }
  119.  
  120. #mw-panel:hover {
  121.     opacity: 1;
  122. }
  123.  
  124. #right-navigation {
  125.     margin: 0 !important;
  126.     float: left !important;
  127. }
  128.    
  129. #searchInput {
  130.     background-color: #eeeeee !important;
  131.     font-size: 9pt !important;
  132.     color: #81A2BE !important;
  133. }
  134.    
  135.    
  136. #searchform {
  137.     background-color: #eeeeee !important;
  138. }
  139.    
  140. #searchButton {
  141.     background-image: none !important;
  142.     background-color: #eeeeee !important;
  143. }    
  144.  
  145. /*
  146.  * numbering of the headings
  147.  */
  148. body {
  149.     counter-reset: headingOne;
  150. }
  151. #toctitle h2:before {
  152.     content: "" !important;
  153.     counter-reset: headingOne;
  154. }
  155. #content h2 {
  156.     counter-reset: headingTwo;
  157. }
  158. #content h2:before {
  159.     counter-increment: headingOne;
  160.     content: counter(headingOne) ".";
  161. }
  162. #content h3 {
  163.     counter-reset: headingThree;
  164. }
  165. #content h3:before {
  166.     counter-increment: headingTwo;     
  167.     content: counter(headingOne) "." counter(headingTwo) ".";
  168. }
  169. #content h4 {
  170.     counter-reset: headingFour;
  171. }
  172. #content h4:before {
  173.     counter-increment: headingThree;
  174.     content: counter(headingOne) "." counter(headingTwo) "." counter(headingThree) ".";
  175. }
  176. #content h5:before {
  177.     counter-increment: headingFour;
  178.     content: counter(headingOne) "." counter(headingTwo) "." counter(headingThree) "." counter(headingFour) ".";
  179. }
  180.  
  181. }
Advertisement
Add Comment
Please, Sign In to add comment