Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2020
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 5.02 KB | None | 0 0
  1. /* CSS here */
  2. /* Firefox Scrollbars */
  3. scrollbar {opacity: .75 !important;}
  4.  
  5. /* Base */
  6.  
  7. *, ::before, ::after {
  8. color: #CCC !important;
  9. border-color: #444 !important;
  10. outline-color: #444 !important;
  11. text-shadow: none !important;
  12. box-shadow: none !important;
  13. -moz-box-shadow: none !important;
  14. background-color: transparent !important;
  15. }
  16.  
  17. html * {
  18. color: inherit !important;
  19. }
  20.  
  21. p::first-letter,
  22. h1::first-letter,
  23. h2::first-letter {
  24.  
  25. color: inherit !important;
  26. background: none !important;
  27. }
  28.  
  29. /* :: Give solid BG :: */
  30.  
  31. /* element */
  32.  
  33. html,
  34. body,
  35.  
  36. li ul,
  37. ul li,
  38. table,
  39. header,
  40. article,
  41. section,
  42. nav,
  43. menu,
  44. aside,
  45.  
  46. /* common */
  47.  
  48. [class*="nav"],
  49. [class*="open"],
  50. [id*="ropdown"], /*dropdown*/
  51. [class*="ropdown"],
  52. div[class*="menu"],
  53. [class*="tooltip"],
  54. div[class*="popup"],
  55. div[id*="popup"],
  56.  
  57. /* Notes, details, etc.  Maybe useful */
  58.  
  59. div[class*="note"],
  60. span[class*="note"],
  61. div[id*="detail"],
  62. div[class*="detail"],
  63. div[class*="description"],
  64.  
  65. /* Also common */
  66. body div[class*="content"],
  67. body div[class*="container"],
  68.  
  69. /* Popup divs that use visibility: hidden and display: none */
  70. div[style*="display: block"],
  71. div[style*="visibility: visible"] {
  72. background-color: #1a1a1a !important;
  73. }
  74.  
  75.  
  76. /*: No BG :*/
  77. *:not(:empty):not(span):not([class="html5-volume-slider html5-draggable"]):not([class="html5-player-chrome html5-stop-propagation"]),
  78. *::before,
  79. *::after,
  80. td:empty,
  81. p:empty, div:empty:not([role]):not([style*="flashblock"]):not([class^="html5"]):not([class*="noscriptPlaceholder"]) {
  82. background-image: none !important;
  83. }
  84.  
  85. /*: Filter non-icons :*/
  86. span:not(:empty):not([class*="icon"]):not([id*="icon"]):not([class*="star"]):not([id*="star"]):not([id*="rating"]):not([class*="rating"]):not([class*="prite"]) {
  87. background-image: none !important;
  88. text-indent: 0 !important;
  89. }
  90.  
  91. /*: Image opacity :*/
  92. img,
  93. svg {
  94. opacity: .75 !important;
  95. }
  96.  
  97. img:hover,
  98. svg:hover {
  99. opacity: 1 !important;
  100. }
  101.  
  102. /* Highlight */
  103. ::-moz-selection {
  104. background-color: #626F61 !important;
  105. color: #F6F7B9 !important;
  106. }
  107.  
  108. /* ::: anchor/links ::: */
  109.  
  110. a {
  111. color: #71BAA5 !important;
  112. background-color: #1a1a1a !important;
  113. opacity: 1 !important;
  114. text-indent: 0 !important;
  115. }
  116.  
  117. a:link         {color: #ACC7F6 !important;} /* hyperlink */
  118. a:visited      {color: #CDB4E7 !important;}
  119. a:hover        {color: #FFE900 !important; background-color: #363037 !important;}
  120. a:active       {color: #FFAE00 !important;}
  121.  
  122. /* "Top level" div */
  123.  
  124. body > div {
  125. background-color: inherit !important;
  126. }
  127.  
  128. /* :::::: Text Presentation :::::: */
  129.  
  130. summary,
  131. details  {
  132. background-color: inherit !important
  133. }
  134.  
  135. kbd,
  136. time,
  137. label,
  138. .date  {
  139. color: #B6D2AC !important
  140. }
  141.  
  142. acronym,
  143. abbr  {
  144. border-bottom: 1px dotted !important;
  145. cursor: help !important;
  146. }
  147.  
  148. mark,
  149. code,
  150. pre,
  151. samp,
  152. blockquote  {
  153. background-color: #282826 !important;
  154. }
  155.  
  156.  
  157. /* :::::: Headings :::::: */
  158.  
  159. h1,h2,h3,h4,h5,h6  {
  160.  
  161. background-image: none !important;
  162. border-radius: 5px !important;
  163. -moz-border-radius: 5px !important;
  164. -webkit-border-radius: 5px !important;
  165. text-indent: 0 !important;
  166. }
  167.  
  168. h1,h2 {background-color: #28313E !important}
  169. h3,h4 {background-color: #2A3731 !important}
  170. h5,h6 {background-color: #372A2A !important}
  171.  
  172. /* :::::: Tables, cells :::::: */
  173.  
  174. table table {background: #212121 !important;}
  175. th, caption {background: #313131 !important;}
  176.  
  177. /* ::: Inputs, textareas ::: */
  178.  
  179. input,
  180. textarea,
  181. button,
  182. select,
  183. option,
  184. optgroup {
  185.  
  186. color: #DDD !important;
  187. background: none #404046 !important;
  188. -moz-appearance: none !important;
  189. -webkit-appearance: none !important;
  190. }
  191.  
  192. input,
  193. textarea,
  194. button {
  195. border-color: #000 !important;
  196. border-width: 1px !important;
  197. }
  198.  
  199. /* :::::: Button styling :::::: */
  200.  
  201. input[type="button"],
  202. input[type="submit"],
  203. input[type="reset"],
  204. button {
  205. background: #343855 !important;
  206. }
  207.  
  208. input[type="button"]:hover,
  209. input[type="submit"]:hover,
  210. input[type="reset"]:hover,
  211. button:hover {
  212. color: #FFF !important;
  213. background: #435B6B !important;
  214. }
  215.  
  216. input[type="image"] {opacity: .85 !important}
  217. input[type="image"]:hover {opacity: .95 !important}
  218.  
  219. /* Lightbox fix */
  220. html [id*="lightbox"] * {background-color: transparent !important;}
  221. html [id*="lightbox"] img {opacity: 1 !important;}
  222.  
  223. /* Youtube Annotation */
  224. #movie_player-html5 .annotation {background: #333 !important}
  225.  
  226. /* Mozilla addons shrink/expand sections */
  227. .expando a {background: none transparent  !important;}
  228.  
  229. window {
  230. background: #1a1a1a !important;
  231. }
  232.  
  233. #newtab-scrollbox {
  234. background: transparent none !important;
  235. }
  236.  
  237. .newtab-title {
  238. background-color: rgba(0,0,0,.75) !important;
  239. color: #eee !important;
  240. }
  241.  
  242. /* Browser Background */
  243. browser[type="content-primary"] {
  244. background-color: #1a1a1a !important;
  245. }
  246.  
  247. * {
  248.  font-size:inherit !important;
  249.  line-height:inherit !important;
  250. }
  251.  
  252. html {
  253.  font-size:medium !important;
  254.  line-height:1.4 !important;
  255. }
  256.  
  257. h1 {font-size:x-large !important;}
  258. h2 {font-size:large !important;}
  259. h3 {font-size:medium !important;}
  260. h4 {font-size:medium !important;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement