Advertisement
Guest User

Xultra's CSS for Wikipedia <3

a guest
Aug 18th, 2015
395
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.23 KB | None | 0 0
  1. @namespace url(http://www.w3.org/1999/xhtml);
  2.  
  3. @-moz-document domain("en.wikipedia.org")
  4.  
  5. {
  6.  
  7. * {
  8.   font-family: Times New Roman;
  9.   color: #666;
  10.   text-align: justify;
  11.   background-color: #fff;
  12. }
  13.  
  14. #mw-navigation, #siteSub,
  15. #mw-page-base, #mw-head-base,
  16. .hatnote, .mw-indicators,
  17. .magnify, .mw-editsection,
  18. .mbox-image {
  19.   display: none; !important
  20. }
  21. .mw-body {
  22.   margin-left: 0em;
  23.   padding: 70px;
  24.   font-size: 1.2em;
  25. }
  26. .mw-body h1 {
  27.   color: #666;
  28.   font-family: Times New Roman;
  29.   border: none;
  30. }
  31. #firstHeading, .firstHeading {
  32.   font-size: 3em;
  33. }  
  34. .mw-headline, h2 {
  35.   color: #666;
  36.   border: none;
  37.   font-size: 1.5em;
  38. }
  39. h3 .mw-headline {
  40.   font-size: 1.1em;
  41.   font-weight: normal;
  42.   padding-left: 2em;
  43. }
  44. h3 .mw-headline:after, h3 .mw-headline:before {
  45.   content: "~";
  46. }
  47.  
  48. div.thumbinner, .infobox, .biography, .vcard,
  49. table.ambox, #toc, .toc, html .thumbimage {
  50.   border: none;
  51.   background-color: white;
  52. }  
  53. table.ambox, #toc, .toc, .thumbimage, img {
  54.   box-shadow: 2px 4px 8px rgba(0, 0, 0, .1);
  55.   margin-bottom: 15px;
  56. }  
  57.  
  58. a, .mw-body a.external {
  59.   color: #666;
  60.   font-weight: bold;
  61.   background-image: none;
  62.   padding-right: 0px;
  63. }
  64.  
  65.  
  66.  
  67. } /* Closes the @-moz-document block */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement