error.css 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. body {
  2. font-family: Lucida,sans-serif;
  3. }
  4. h1 {
  5. color: #AA0000;
  6. border-bottom: 1px solid #444;
  7. }
  8. h2 { color: #444; }
  9. pre {
  10. font-family: "lucida console","monaco","andale mono","bitstream vera sans mono","consolas",monospace;
  11. font-size: 12px;
  12. border-left: 2px solid #777;
  13. padding-left: 1em;
  14. }
  15. footer {
  16. font-size: 10px;
  17. }
  18. span.key {
  19. color: #449;
  20. font-weight: bold;
  21. width: 120px;
  22. display: inline;
  23. }
  24. span.value {
  25. color: #494;
  26. }
  27. /* these are for the message boxes */
  28. pre.content {
  29. background-color: #eee;
  30. color: #000;
  31. padding: 1em;
  32. margin: 0;
  33. border: 1px solid #aaa;
  34. border-top: 0;
  35. margin-bottom: 1em;
  36. }
  37. div.title {
  38. font-family: "lucida console","monaco","andale mono","bitstream vera sans mono","consolas",monospace;
  39. font-size: 12px;
  40. background-color: #aaa;
  41. color: #444;
  42. font-weight: bold;
  43. padding: 3px;
  44. padding-left: 10px;
  45. }
  46. pre.content span.nu {
  47. color: #889;
  48. margin-right: 10px;
  49. }
  50. pre.error {
  51. background: #334;
  52. color: #ccd;
  53. padding: 1em;
  54. border-top: 1px solid #000;
  55. border-left: 1px solid #000;
  56. border-right: 1px solid #eee;
  57. border-bottom: 1px solid #eee;
  58. }