tangramtest.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. html {
  6. border: 0;
  7. height: 100%;
  8. }
  9. body {
  10. font: 12px/1.5 Lucida Grande, Helvetica, Arial, sans-serif;
  11. background: #F3F1F1;
  12. color: #41464D;
  13. }
  14. body,#container {
  15. width: 100%;
  16. height: 100%;
  17. }
  18. .clear { /* generic container (i.e. div) for floating buttons */
  19. overflow: hidden;
  20. width: 100%;
  21. }
  22. a {
  23. text-decoration: none;
  24. overflow: hidden;
  25. }
  26. #title {
  27. top: 0;
  28. left: 0;
  29. width: 100%;
  30. padding: 5px 0;
  31. background: #aaa;
  32. background: #41464D;
  33. color: #F3F1F1;
  34. height: 30px;
  35. }
  36. a:link,a:visited {
  37. color: #528CE0;
  38. }
  39. a:hover,a:active {
  40. color: #41464D !important;
  41. cursor: pointer !important;
  42. }
  43. #title h1 {
  44. height: 30px;
  45. font: 25px/1.1 Arial, sans-serif;
  46. font-weight: bolder;
  47. float: left;
  48. margin: 1px 0 2px 20px;
  49. text-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
  50. }
  51. h3 {
  52. font-size: 14px;
  53. padding: 3px 5px 1px;
  54. }
  55. .control {
  56. background: #d5ded7;
  57. width: 99%;
  58. }
  59. .testlist {
  60. max-height: 200px;
  61. overflow-y: scroll;
  62. border-style: double;
  63. }
  64. .testlist a {
  65. display: block;
  66. width: 150px;
  67. color: #657528;
  68. background: #d5dea7;
  69. border: 1px solid #c8dc7b;
  70. margin: 5px 0 0 5px;
  71. text-indent: 5px;
  72. line-height: 24px;
  73. font-size: 14px;
  74. float: left;
  75. }
  76. a.button {
  77. background: transparent url('bg_button_a.gif') no-repeat scroll top
  78. right;
  79. color: #444;
  80. display: block;
  81. float: left;
  82. font: normal 12px arial, sans-serif;
  83. height: 24px;
  84. margin-right: 6px;
  85. padding-right: 18px; /* sliding doors padding */
  86. text-decoration: none;
  87. }
  88. a.button span {
  89. background: transparent url('bg_button_span.gif') no-repeat;
  90. display: block;
  91. line-height: 14px;
  92. padding: 5px 0 5px 18px;
  93. }
  94. a.button:active {
  95. background-position: bottom right;
  96. color: #000;
  97. outline: none; /* hide dotted outline in Firefox */
  98. }
  99. a.button:active span {
  100. background-position: bottom left;
  101. padding: 6px 0 4px 18px; /* push text down 1px */
  102. }
  103. .testlist a:link {
  104. }
  105. .testlist a:visited {
  106. }
  107. .testlist a:hover {
  108. background: #c8dc7b;
  109. }
  110. .testlist a.jsframe_jsspec {
  111. background: #DDDDDD
  112. }
  113. .testlist a.running_case {
  114. color: yellow;
  115. }
  116. .testlist a.fail_case {
  117. color: red;
  118. }
  119. .testlist a.pass_case {
  120. color: green;
  121. }
  122. .runningarea {
  123. height: 60%;
  124. }
  125. .runningmaindiv {
  126. height: 99%;
  127. }
  128. .runningframe {
  129. height: 99.99%;
  130. width: 99.99%;
  131. }
  132. .runningstatus {
  133. clear: both;
  134. height: 10%;
  135. border: solid
  136. }
  137. .reportarea {
  138. padding: 10px;
  139. border: 10px blue;
  140. max-height: 200px;
  141. overflow-y: scroll;
  142. }