Advertisement
Guest User

Untitled

a guest
Aug 17th, 2015
3,061
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.23 KB | None | 0 0
  1. @-moz-document url-prefix(about:blank) {*{background-color:#202020;}}
  2. /*
  3. * Use this css file to eliminate problems in Firefox
  4. * when using dark themes that create dark on dark
  5. * input boxes, selection menus and buttons. Put this
  6. * in the ../firefox/default/chrome folder or your
  7. * individual user firefox profile chrome folder.
  8. */
  9. input {
  10. border: 2px inset white;
  11. background-color: white;
  12. color: black;
  13. -moz-appearance: none !important;
  14. }
  15. textarea {
  16. border: 2px inset white;
  17. background-color: white;
  18. color: black;
  19. -moz-appearance: none !important;
  20. }
  21. select {
  22. border: 2px inset white;
  23. background-color: white;
  24. color: black;
  25. -moz-appearance: none !important;
  26. }
  27. input[type="radio"],
  28. input[type="checkbox"] {
  29. border: 2px inset white ! important;
  30. background-color: white ! important;
  31. color: ThreeDFace ! important;
  32. -moz-appearance: none !important;
  33. }
  34. *|*::-moz-radio {
  35. background-color: white;
  36. -moz-appearance: none !important;
  37. }
  38. button,
  39. input[type="reset"],
  40. input[type="button"],
  41. input[type="submit"] {
  42. border: 2px outset white;
  43. background-color: #eeeeee;
  44. color: black;
  45. -moz-appearance: none !important;
  46. }
  47. body {
  48. background-color: white;
  49. color: black;
  50. display: block;
  51. margin: 8px;
  52. -moz-appearance: none !important;
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement