Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

qunit.css 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. ol#qunit-tests {
  2. font-family:"Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial;
  3. margin:0;
  4. padding:0;
  5. list-style-position:inside;
  6. font-size: smaller;
  7. }
  8. ol#qunit-tests li{
  9. padding:0.4em 0.5em 0.4em 2.5em;
  10. border-bottom:1px solid #fff;
  11. font-size:small;
  12. list-style-position:inside;
  13. }
  14. ol#qunit-tests li ol{
  15. box-shadow: inset 0px 2px 13px #999;
  16. -moz-box-shadow: inset 0px 2px 13px #999;
  17. -webkit-box-shadow: inset 0px 2px 13px #999;
  18. margin-top:0.5em;
  19. margin-left:0;
  20. padding:0.5em;
  21. background-color:#fff;
  22. border-radius:15px;
  23. -moz-border-radius: 15px;
  24. -webkit-border-radius: 15px;
  25. }
  26. ol#qunit-tests li li{
  27. border-bottom:none;
  28. margin:0.5em;
  29. background-color:#fff;
  30. list-style-position: inside;
  31. padding:0.4em 0.5em 0.4em 0.5em;
  32. }
  33. ol#qunit-tests li li.pass{
  34. border-left:26px solid #C6E746;
  35. background-color:#fff;
  36. color:#5E740B;
  37. }
  38. ol#qunit-tests li li.fail{
  39. border-left:26px solid #EE5757;
  40. background-color:#fff;
  41. color:#710909;
  42. }
  43. ol#qunit-tests li.pass{
  44. background-color:#D2E0E6;
  45. color:#528CE0;
  46. }
  47. ol#qunit-tests li.fail{
  48. background-color:#EE5757;
  49. color:#000;
  50. }
  51. ol#qunit-tests li strong {
  52. cursor:pointer;
  53. }
  54. h1#qunit-header{
  55. background-color:#0d3349;
  56. margin:0;
  57. padding:0.5em 0 0.5em 1em;
  58. color:#fff;
  59. font-family:"Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial;
  60. border-top-right-radius:15px;
  61. border-top-left-radius:15px;
  62. -moz-border-radius-topright:15px;
  63. -moz-border-radius-topleft:15px;
  64. -webkit-border-top-right-radius:15px;
  65. -webkit-border-top-left-radius:15px;
  66. text-shadow: rgba(0, 0, 0, 0.5) 4px 4px 1px;
  67. }
  68. h2#qunit-banner{
  69. font-family:"Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial;
  70. height:5px;
  71. margin:0;
  72. padding:0;
  73. }
  74. h2#qunit-banner.qunit-pass{
  75. background-color:#C6E746;
  76. }
  77. h2#qunit-banner.qunit-fail, #qunit-testrunner-toolbar {
  78. background-color:#EE5757;
  79. }
  80. #qunit-testrunner-toolbar {
  81. font-family:"Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial;
  82. padding:0;
  83. /*width:80%;*/
  84. padding:0em 0 0.5em 2em;
  85. font-size: small;
  86. }
  87. h2#qunit-userAgent {
  88. font-family:"Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial;
  89. background-color:#2b81af;
  90. margin:0;
  91. padding:0;
  92. color:#fff;
  93. font-size: small;
  94. padding:0.5em 0 0.5em 2.5em;
  95. text-shadow: rgba(0, 0, 0, 0.5) 2px 2px 1px;
  96. }
  97. p#qunit-testresult{
  98. font-family:"Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial;
  99. margin:0;
  100. font-size: small;
  101. color:#2b81af;
  102. border-bottom-right-radius:15px;
  103. border-bottom-left-radius:15px;
  104. -moz-border-radius-bottomright:15px;
  105. -moz-border-radius-bottomleft:15px;
  106. -webkit-border-bottom-right-radius:15px;
  107. -webkit-border-bottom-left-radius:15px;
  108. background-color:#D2E0E6;
  109. padding:0.5em 0.5em 0.5em 2.5em;
  110. }
  111. strong b.fail{
  112. color:#710909;
  113. }
  114. strong b.pass{
  115. color:#5E740B;
  116. }