plugins.css 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this
  3. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  4. /* ===== plugins.css =====================================================
  5. == Styles used by the about:plugins page.
  6. ======================================================================= */
  7. body {
  8. background-color: -moz-Field;
  9. color: -moz-FieldText;
  10. font: message-box;
  11. }
  12. div#outside {
  13. text-align: justify;
  14. width: 90%;
  15. margin-left: 5%;
  16. margin-right: 5%;
  17. }
  18. #plugs {
  19. text-align: center;
  20. font-size: xx-large;
  21. font-weight: bold;
  22. }
  23. #noplugs {
  24. font-size: x-large;
  25. font-weight: bold;
  26. }
  27. .plugname {
  28. margin-top: 2em;
  29. margin-bottom: 1em;
  30. font-size: large;
  31. text-align: start;
  32. font-weight: bold;
  33. }
  34. dl {
  35. margin: 0px 0px 3px 0px;
  36. }
  37. table {
  38. background-color: -moz-Dialog;
  39. color: -moz-DialogText;
  40. font: message-box;
  41. text-align: start;
  42. width: 100%;
  43. border: 1px solid ThreeDShadow;
  44. border-spacing: 0px;
  45. }
  46. th, td {
  47. border: none;
  48. padding: 3px;
  49. }
  50. th {
  51. text-align: center;
  52. background-color: Highlight;
  53. color: HighlightText;
  54. }
  55. th + th,
  56. td + td {
  57. border-inline-start: 1px dotted ThreeDShadow;
  58. }
  59. td {
  60. text-align: start;
  61. border-top: 1px dotted ThreeDShadow;
  62. }
  63. th.type, th.suff {
  64. width: 25%;
  65. }
  66. th.desc {
  67. width: 50%;
  68. }
  69. .notice {
  70. background: -moz-cellhighlight;
  71. border: 1px solid ThreeDShadow;
  72. padding: 10px;
  73. }