userChrome.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /*
  2. * Edit this file and copy it as userChrome.css into your
  3. * profile-directory/chrome/
  4. */
  5. /*
  6. * This file can be used to customize the look of Mozilla's user interface
  7. * You should consider using !important on rules which you want to
  8. * override default settings.
  9. */
  10. /*
  11. * Do not remove the @namespace line -- it's required for correct functioning
  12. */
  13. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
  14. /*
  15. * Some possible accessibility enhancements:
  16. */
  17. /*
  18. * Make all the default font sizes 20 pt:
  19. *
  20. * * {
  21. * font-size: 20pt !important
  22. * }
  23. */
  24. /*BK ha ha, changed 'pt' to 'px' (pixels) fixed it...*/
  25. * {
  26. font-size: 12px !important;
  27. font-family: DejaVu Sans !important;
  28. }
  29. /* font-family: nimbus !important;*/
  30. /*
  31. * Make menu items in particular 15 pt instead of the default size:
  32. *
  33. * menupopup > * {
  34. * font-size: 15pt !important
  35. * }
  36. */
  37. /*BK experimenting...
  38. menupopup > * {
  39. font-size: 12pt !important
  40. }
  41. menu > * {
  42. font-size: 12pt !important
  43. }
  44. */
  45. /*
  46. * Give the Location (URL) Bar a fixed-width font
  47. *
  48. * #urlbar {
  49. * font-family: monospace !important;
  50. * }
  51. */
  52. /*
  53. * Eliminate the throbber and its annoying movement:
  54. *
  55. * #throbber-box {
  56. * display: none !important;
  57. * }
  58. */
  59. /*
  60. * For more examples see http://www.mozilla.org/unix/customizing.html
  61. */