Advertisement
RyanCordell

[RC] ZDoom Wiki For Sore Eyes

Nov 4th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.19 KB | None | 0 0
  1. @namespace url(http://www.w3.org/1999/xhtml);
  2.  
  3. /* Affect any URL starting out with zdoom.org/w */
  4. @-moz-document
  5. url-prefix("https://zdoom.org/w"),
  6. url-prefix("https://zdoom.org/wiki/"),
  7. url-prefix("http://zdoom.org/w"),
  8. url-prefix("http://zdoom.org/wiki/")
  9. {
  10.  
  11.     /* Left sidebar + page head*/
  12.     body, #mw-head {
  13.         background-color: rgb(20,30,40);
  14.     }
  15.  
  16.     /* Left sidebar text */
  17.     div#mw-panel div.portal h3 {
  18.         color: white;
  19.     }
  20.  
  21.     /* Article body */
  22.     .mw-body, .mw-body h1, .mw-body h2, .mw-body h3, .mw-body h4, div.noprint {
  23.         border-style: none !important;
  24.         background-color: rgb(40,50,60) !important;
  25.         color: white;
  26.     }
  27.  
  28.     /* Main page tables */
  29.     #mw-content-text > table:nth-child(2) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(2), #mw-content-text > table:nth-child(2) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1), #mw-content-text > div:nth-child(3) {
  30.        background-color: rgb(40,50,60) !important;
  31.        border: none !important;
  32.     }
  33.  
  34.     /* Links */
  35.     a {
  36.         color: rgb(255, 191, 0) !important;
  37.     }
  38.     a:visited {
  39.         color: rgb(255, 128, 0) !important;
  40.     }
  41.  
  42.     /* Descriptive tables */
  43.     table, element {
  44.         border-color: rgb(113, 0, 11) !important;
  45.         background-color: rgb(130, 23, 59) !important;
  46.     }
  47.     th {
  48.         background-color: rgb(84, 18, 40) !important;
  49.     }
  50.  
  51.     /* Code */
  52.     pre, .mw-code {
  53.         background-color: rgb(60,70,80);
  54.         color: white;
  55.     }
  56.  
  57.     p, table.wikitable > * > tr > td, table.wikitable > * > tr > th {
  58.         color: white;
  59.     }
  60.  
  61.     /* Category links */
  62.     .catlinks {
  63.         background-color: rgb(60,70,80);
  64.     }
  65.  
  66.     #toc, .toc {
  67.         background-color: rgb(40,50,60);
  68.     }
  69.  
  70.     /* Top page tabs */
  71.     .vectorTabs, .vectorTabs ul li {
  72.         background-image: none !important;
  73.         background-color: rgb(40,50,60) !important;
  74.     }
  75.  
  76.     /* Top page tab 'border' */
  77.     div.vectorTabs span {
  78.         display: inline;
  79.     }
  80.  
  81.     /* Thumbnail */
  82.     .thumbinner {
  83.         border: 1px solid rgb(0,10,20) !important;
  84.         background-color: rgb(50,60,70) !important;
  85.     }
  86. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement