Advertisement
LPGhatguy

LOVE2D Wiki Minimalist Dark

May 27th, 2012
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.08 KB | None | 0 0
  1. body {
  2. background-color: #111;
  3. font-size: 120%;
  4. }
  5.  
  6. a {
  7. color: #c33;
  8. }
  9.  
  10. /*           Top bar            */
  11. #p-cactions {
  12. background-color: transparent;
  13. border: none !important;
  14. }
  15.  
  16. #p-cactions div ul {
  17. border: solid 4px #444 !important;
  18. border-bottom: none !important;
  19. border-bottom-left-radius: 0px;
  20. border-bottom-right-radius: 0px;
  21. }
  22.  
  23. #ca-nstab-main a, #ca-talk a, #ca-viewsource a, #ca-history a {
  24. color: #ddd !important;
  25. background-color: #777 !important;
  26. display: none !important;
  27. }
  28.  
  29. /*           Content            */
  30. .firstHeading {
  31. background-color: #222;
  32. color: #aaa;
  33. border: solid 4px #444 !important;
  34. border-top: none !important;
  35. border-bottom: none !important;
  36. }
  37.  
  38. #bodyContent {
  39. background-color: #222;
  40. color: #ddd;
  41. min-height: 0;
  42. border: solid 4px #444 !important;
  43. border-top: none !important;
  44. }
  45.  
  46. table, ul {
  47. border-radius: 5px;
  48. border: solid 4px #444 !important;
  49. }
  50.  
  51. ul {
  52. padding-top: 5px;
  53. padding-bottom: 5px;
  54. padding-left: 25px;
  55. }
  56.  
  57. table, ul, td {
  58. background-color: #222 !important;
  59. color: #ddd;
  60. }
  61.  
  62. h2 {
  63. border-bottom: 1px dotted #aaa;
  64. }
  65.  
  66. a.external {
  67. background: none !important;
  68. padding: 0 !important;
  69. }
  70.  
  71. .mw-headline {
  72. color: #fff;
  73. }
  74.  
  75. .mw-geshi {
  76. border-radius: 5px !important;
  77. border: solid 4px #444 !important;
  78. }
  79.  
  80. .mw-geshi, .mw-geshi div {
  81. background-color: #222;
  82. color: #eee !important;
  83. }
  84.  
  85. /*           SIDE BAR                    */
  86. .portlet h5 {
  87. display: none !important;
  88. }
  89.  
  90. .portlet {
  91. position: relative;
  92. bottom: 140px;
  93. }
  94.  
  95. .portlet .pBody {
  96. background-color: #222;
  97. border: solid 4px #444 !important;
  98. }
  99.  
  100. .pBody a {
  101. color: #ddd !important;
  102. }
  103.  
  104. .pBody ul {
  105. border: none !important;
  106. }
  107.  
  108. #p-logo, #p-search, #p-personal, #p-wiki_navigation, #p-tb {
  109. display: none;
  110. }
  111.  
  112. /*           FOOTER                      */
  113. .i18n, .printfooter, #catlinks, #footer {
  114. display:none;
  115. }
  116.  
  117. /*           SYNTAX HIGHLIGHTING         */
  118. .lua .sy0 { /* Math operator */
  119. color: #2e2 !important;
  120. }
  121.  
  122. .lua .st0 { /* String */
  123. color: #d90 !important;
  124. }
  125.  
  126. .lua .br0 { /*? Parentheses? */
  127. color: #2e2 !important;
  128. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement