UpgradeReport.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /* Body style, for the entire document */
  2. body
  3. {
  4. background: #F3F3F4;
  5. color: #1E1E1F;
  6. font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  7. padding: 0;
  8. margin: 0;
  9. }
  10. /* Header1 style, used for the main title */
  11. h1
  12. {
  13. padding: 10px 0px 10px 10px;
  14. font-size: 21pt;
  15. background-color: #E2E2E2;
  16. border-bottom: 1px #C1C1C2 solid;
  17. color: #201F20;
  18. margin: 0;
  19. font-weight: normal;
  20. }
  21. /* Header2 style, used for "Overview" and other sections */
  22. h2
  23. {
  24. font-size: 18pt;
  25. font-weight: normal;
  26. padding: 15px 0 5px 0;
  27. margin: 0;
  28. }
  29. /* Header3 style, used for sub-sections, such as project name */
  30. h3
  31. {
  32. font-weight: normal;
  33. font-size: 15pt;
  34. margin: 0;
  35. padding: 15px 0 5px 0;
  36. background-color: transparent;
  37. }
  38. /* Color all hyperlinks one color */
  39. a
  40. {
  41. color: #1382CE;
  42. }
  43. /* Table styles */
  44. table
  45. {
  46. border-spacing: 0 0;
  47. border-collapse: collapse;
  48. font-size: 10pt;
  49. }
  50. table th
  51. {
  52. background: #E7E7E8;
  53. text-align: left;
  54. text-decoration: none;
  55. font-weight: normal;
  56. padding: 3px 6px 3px 6px;
  57. }
  58. table td
  59. {
  60. vertical-align: top;
  61. padding: 3px 6px 5px 5px;
  62. margin: 0px;
  63. border: 1px solid #E7E7E8;
  64. background: #F7F7F8;
  65. }
  66. /* Local link is a style for hyperlinks that link to file:/// content, there are lots so color them as 'normal' text until the user mouse overs */
  67. .localLink
  68. {
  69. color: #1E1E1F;
  70. background: #EEEEED;
  71. text-decoration: none;
  72. }
  73. .localLink:hover
  74. {
  75. color: #1382CE;
  76. background: #FFFF99;
  77. text-decoration: none;
  78. }
  79. /* Center text, used in the over views cells that contain message level counts */
  80. .textCentered
  81. {
  82. text-align: center;
  83. }
  84. /* The message cells in message tables should take up all avaliable space */
  85. .messageCell
  86. {
  87. width: 100%;
  88. }
  89. /* Padding around the content after the h1 */
  90. #content
  91. {
  92. padding: 0px 12px 12px 12px;
  93. }
  94. /* The overview table expands to width, with a max width of 97% */
  95. #overview table
  96. {
  97. width: auto;
  98. max-width: 75%;
  99. }
  100. /* The messages tables are always 97% width */
  101. #messages table
  102. {
  103. width: 97%;
  104. }