aboutCertError.css 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. html {
  5. background: #833;
  6. }
  7. body {
  8. margin: 0;
  9. padding: 0 1em;
  10. color: -moz-FieldText;
  11. font: message-box;
  12. }
  13. h1 {
  14. margin: 0 0 .6em 0;
  15. border-bottom: 1px solid ThreeDLightShadow;
  16. font-size: 160%;
  17. }
  18. h2 {
  19. font-size: 130%;
  20. }
  21. #errorPageContainer {
  22. position: relative;
  23. min-width: 13em;
  24. max-width: 52em;
  25. margin: 4em auto;
  26. border: 2px solid #DD0D09;
  27. border-radius: 10px;
  28. box-shadow: 0px 0px 8px red;
  29. padding: 3em;
  30. padding-inline-start: 30px;
  31. background: url("chrome://global/skin/icons/sslWarning.png") left 0 no-repeat -moz-Field;
  32. background-origin: content-box;
  33. }
  34. #errorPageContainer:-moz-dir(rtl) {
  35. background-position: right 0;
  36. }
  37. #errorTitle {
  38. margin-inline-start: 80px;
  39. }
  40. #errorLongContent {
  41. margin-inline-start: 80px;
  42. }
  43. .expander > button {
  44. padding-inline-start: 20px;
  45. margin-inline-start: -20px;
  46. background: url("chrome://browser/skin/aboutCertError_sectionExpanded.png") left center no-repeat;
  47. border: none;
  48. font: inherit;
  49. color: inherit;
  50. cursor: pointer;
  51. }
  52. .expander > button:-moz-dir(rtl) {
  53. background-position: right center;
  54. }
  55. .expander[collapsed] > button {
  56. background-image: url("chrome://browser/skin/aboutCertError_sectionCollapsed.png");
  57. }
  58. .expander[collapsed] > button:-moz-dir(rtl) {
  59. background-image: url("chrome://browser/skin/aboutCertError_sectionCollapsed-rtl.png");
  60. }