main.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. @charset "utf-8";
  2. /* CSS Document */
  3. /* Background-Styles */
  4. body {
  5. font-family:Helvetica;
  6. margin:0px;
  7. padding:0px;
  8. background-color: #fff;
  9. background-image: url(/images/bg.jpg);
  10. }
  11. h2 {
  12. text-shadow: #ccc 0px 1px 0px;
  13. text-decoration:none;
  14. color:#D14836;
  15. padding-top: 0px;
  16. padding-right: 5px;
  17. padding-bottom: 5px;
  18. padding-left: 5px;
  19. }
  20. #git {
  21. background-color: #FFF;
  22. font-size: 15px;
  23. display: auto;
  24. padding: 10px;
  25. border: 1px solid #CCC;
  26. position: relative;
  27. -moz-box-shadow: 2px 2px 5px #888;
  28. -webkit-box-shadow: 2px 2px 5px #888;
  29. box-shadow: 2px 2px 5px #888;
  30. }
  31. #git a {
  32. color:#00F;
  33. font-weight: normal;
  34. }
  35. #git a:hover {
  36. color:#D14836;
  37. }
  38. .passed-text {
  39. color:green;
  40. }
  41. .failed-text {
  42. color:red;
  43. }
  44. #main {
  45. padding-top:0px;
  46. min-width: 420px;
  47. margin-top: 0;
  48. margin-right: auto;
  49. margin-bottom: 0;
  50. margin-left: auto;
  51. padding-right: 20px;
  52. padding-bottom: 50px;
  53. padding-left: 20px;
  54. }
  55. ul#testresults {
  56. background-color: #FFF;
  57. display: block;
  58. padding: 10px;
  59. border: 1px solid #CCC;
  60. list-style-type: none;
  61. position: relative;
  62. -moz-box-shadow: 2px 2px 5px #888;
  63. -webkit-box-shadow: 2px 2px 5px #888;
  64. box-shadow: 2px 2px 5px #888;
  65. }
  66. ul#testresults li {
  67. list-style-type: none;
  68. display: block;
  69. background-color: #eef1f1;
  70. margin: 5px;
  71. padding: 5px;
  72. }
  73. ul#testlogs {
  74. background-color: #FFF;
  75. display: block;
  76. padding: 10px;
  77. border: 1px solid #CCC;
  78. list-style-type: none;
  79. position: relative;
  80. -moz-box-shadow: 2px 2px 5px #888;
  81. -webkit-box-shadow: 2px 2px 5px #888;
  82. box-shadow: 2px 2px 5px #888;
  83. }
  84. ul#testlogs li {
  85. text-decoration:none;
  86. list-style-type: none;
  87. display: block;
  88. background-color: #eef1f1;
  89. margin: 5px;
  90. padding: 5px;
  91. font-size: 15px;
  92. }
  93. ul#testlogs li a {
  94. text-decoration:none;
  95. color:#8aa19c;
  96. font-weight: bold;
  97. font-size: 12px;
  98. }
  99. ul#testlogs li a:hover {
  100. color:#D14836;
  101. }
  102. .status-table {
  103. border-collapse: collapse;
  104. margin: 25px 0;
  105. font-size: 0.9em;
  106. font-family: sans-serif;
  107. min-width: 400px;
  108. box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  109. }
  110. .status-table thead tr {
  111. background-color: #009879;
  112. color: #ffffff;
  113. text-align: left;
  114. }
  115. .status-table th,
  116. .status-table td {
  117. padding: 12px 15px;
  118. }
  119. .status-table tbody tr {
  120. border-bottom: 1px solid #dddddd;
  121. }
  122. .status-table tbody tr.Failed {
  123. font-weight: bold;
  124. background-color: rgba(255,0,0,0.2);
  125. }
  126. .status-table tbody tr.Error {
  127. font-weight: bold;
  128. background-color: rgba(255,0,0,0.2);
  129. }
  130. .status-table tbody tr.Pending {
  131. font-weight: bold;
  132. background-color: rgba(128,128,0,0.1);
  133. }
  134. .status-table tbody tr.Finished {
  135. font-weight: bold;
  136. background-color: rgba(0,255,0,0.1);
  137. }
  138. .status-table tbody tr.Running {
  139. font-weight: bold;
  140. background-color: rgba(0,255,0,0.15);
  141. }