nodeunit.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*!
  2. * Styles taken from qunit.css
  3. */
  4. h1#nodeunit-header, h1.nodeunit-header {
  5. padding: 15px;
  6. font-size: large;
  7. background-color: #06b;
  8. color: white;
  9. font-family: 'trebuchet ms', verdana, arial;
  10. margin: 0;
  11. }
  12. h1#nodeunit-header a {
  13. color: white;
  14. }
  15. h2#nodeunit-banner {
  16. height: 2em;
  17. border-bottom: 1px solid white;
  18. background-color: #eee;
  19. margin: 0;
  20. font-family: 'trebuchet ms', verdana, arial;
  21. }
  22. h2#nodeunit-banner.pass {
  23. background-color: green;
  24. }
  25. h2#nodeunit-banner.fail {
  26. background-color: red;
  27. }
  28. h2#nodeunit-userAgent, h2.nodeunit-userAgent {
  29. padding: 10px;
  30. background-color: #eee;
  31. color: black;
  32. margin: 0;
  33. font-size: small;
  34. font-weight: normal;
  35. font-family: 'trebuchet ms', verdana, arial;
  36. font-size: 10pt;
  37. }
  38. div#nodeunit-testrunner-toolbar {
  39. background: #eee;
  40. border-top: 1px solid black;
  41. padding: 10px;
  42. font-family: 'trebuchet ms', verdana, arial;
  43. margin: 0;
  44. font-size: 10pt;
  45. }
  46. ol#nodeunit-tests {
  47. font-family: 'trebuchet ms', verdana, arial;
  48. font-size: 10pt;
  49. }
  50. ol#nodeunit-tests li strong {
  51. cursor:pointer;
  52. }
  53. ol#nodeunit-tests .pass {
  54. color: green;
  55. }
  56. ol#nodeunit-tests .fail {
  57. color: red;
  58. }
  59. p#nodeunit-testresult {
  60. margin-left: 1em;
  61. font-size: 10pt;
  62. font-family: 'trebuchet ms', verdana, arial;
  63. }