Guest User

Untitled

a guest
Apr 26th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 KB | None | 0 0
  1. #test_console {
  2. border: 1px solid #999;
  3. background: #fff;
  4. position: absolute;
  5. font-size: 10px;
  6. top: 10px;
  7. right: 10px;
  8. text-align: left;
  9. -moz-border-radius: 5px;
  10. -moz-box-shadow: 5px 5px 5px #000;
  11. padding: 10px;
  12. /* we need a width to constrain the box */
  13. _width: 320px;
  14. }
  15. #test_console .controls {
  16. overflow: hidden;
  17. zoom: 1;
  18. }
  19. #test_console a {
  20. float: right;
  21. font-weight: bold;
  22. padding-right: 20px;
  23. background: transparent url(icons/hide.png) no-repeat top right;
  24. line-height: 1.6;
  25. margin-left: 10px;
  26. }
  27. #test_console a.show {
  28. background-image: url(icons/show.png);
  29. }
  30. #test_console .bd {
  31. width: 300px;
  32. height: 300px;
  33. margin-top: 10px;
  34. overflow-y:scroll;
  35. }
  36. #test_console .bd a {
  37. float: none;
  38. margin-top: 1em;
  39. display: block;
  40. background: none;
  41. padding-right: 0;
  42. margin-left: 0;
  43. }
  44. #test_console .title {
  45. font-weight: bold;
  46. font-size: 1.6em;
  47. float: left;
  48. }
  49. #test_console .bd .title {
  50. font-size: 1.2em;
  51. padding-top: 0.5em;
  52. float: none;
  53. clear:both;
  54. }
  55. #test_console .bd .message {
  56. border-bottom: 2px solid #fff;
  57. padding: 0.2em 5px 0.2em 50px;
  58. background: transparent url(icons/win.jpg) no-repeat 5px 5px;
  59. min-height: 50px;
  60. /* IE has epic min-height FAIL */
  61. _height: 50px;
  62. margin-right: 10px;
  63. background-color: #E5EECC;
  64. color: #617F10;
  65. }
  66. #test_console .bd div:last-child {
  67. border-bottom: none;
  68. }
  69. #test_console .bd div.fail {
  70. background-image: url(icons/fail.jpg);
  71. background-color: #FCEEF0;
  72. color: #B90D33;
  73. }
  74. #test_console p,
  75. #test_console ul,
  76. #test_console fieldset {
  77. font-size: 1.2em;
  78. }
  79. #test_console p {
  80. margin-bottom: 0.5em;
  81. }
  82. #test_console li {
  83. list-style-type: disc;
  84. margin-left: 20px;
  85. }
  86. #test_console p em {
  87. font-style: normal;
  88. font-weight: bold;
  89. }
  90. #test_console div.test_summary {
  91. background: none;
  92. padding-left: 0;
  93. color: #666;
  94. width: 45%;
  95. float: left;
  96. }
Add Comment
Please, Sign In to add comment