style.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. body {
  2. font-family: "Lucida Grande", Lucida, Verdana, sans-serif;
  3. font-size: 12px;
  4. }
  5. a {
  6. text-decoration: none;
  7. }
  8. a:hover {
  9. text-decoration: underline;
  10. }
  11. table, tr, th, td {
  12. border: 1px solid #AAA;
  13. }
  14. table {
  15. margin-top: 1em;
  16. width: 100%;
  17. }
  18. tbody th {
  19. text-align: left;
  20. font-size: 14px;
  21. width: 200px;
  22. }
  23. th h3 {
  24. margin: 3px;
  25. font-size: 12px;
  26. }
  27. th span.links {
  28. font-size: 10px;
  29. }
  30. dt {
  31. font-weight: bold;
  32. }
  33. tr:hover > th,
  34. tr:hover > td + td { background-color: #FFC; }
  35. div.test_wrap {
  36. display: -moz-inline-stack;
  37. display: inline-block;
  38. border: 1px solid #CCC;
  39. text-align: center;
  40. vertical-align: top;
  41. min-height: 50px;
  42. margin-right: 5px;
  43. background: white;
  44. position: relative;
  45. }
  46. div.test_wrap h3 {
  47. text-align: center;
  48. margin: 2px;
  49. font-size: 10px;
  50. }
  51. div.auto {
  52. display: -moz-inline-stack;
  53. display: inline-block;
  54. border: 1px solid;
  55. width: 30px;
  56. height: 30px;
  57. }
  58. div.square {
  59. display: -moz-inline-stack;
  60. display: inline-block;
  61. border: 1px solid;
  62. width: 30px;
  63. height: 30px;
  64. background: red;
  65. }
  66. div.info {
  67. display: none;
  68. position: absolute;
  69. top: 100%;
  70. z-index: 2;
  71. left: 0;
  72. background: white;
  73. padding: 2px;
  74. min-width: 300px;
  75. border: 1px solid;
  76. text-align: left;
  77. }
  78. div.test_wrap:hover > div.info {
  79. display: block;
  80. }
  81. div.vis_test {
  82. display: -moz-inline-stack;
  83. display: inline-block;
  84. }
  85. div.vis_ref {
  86. display: -moz-inline-stack;
  87. display: inline-block;
  88. border-left: 1px dashed black;
  89. margin-left: 5px;
  90. padding-left: 5px;
  91. vertical-align: top;
  92. }
  93. p.condition {
  94. font-style: italic;
  95. margin: 2px;
  96. clear: both;
  97. }
  98. .pass {
  99. background: lime;
  100. }
  101. .fail {
  102. background: red;
  103. }
  104. .partial {
  105. background: yellow;
  106. }
  107. .unknown {
  108. background: #aaa;
  109. }
  110. .current span {
  111. border-radius: 6px;
  112. -moz-border-radius: 6px;
  113. background: none repeat scroll 0 0 #E6EA69;
  114. color: black;
  115. float: right;
  116. font-size: 8px;
  117. padding: 0 1px;
  118. }
  119. #intro, #options {
  120. width: 400px;
  121. background: #EEE;
  122. border-radius: 10px;
  123. padding: 5px 10px;
  124. margin: 10px;
  125. float: left;
  126. }
  127. #intro dt::after {
  128. content: ':';
  129. }
  130. #intro dd {
  131. margin-bottom: 1em;
  132. }
  133. #opt_submit {
  134. display: block;
  135. margin: 10px;
  136. }
  137. #options label {
  138. display: block;
  139. margin: 5px;
  140. }