Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.47 KB | None | 0 0
  1. #question-tbl
  2. {
  3.     text-align: left;
  4.     border-collapse: collapse;
  5.     margin:0 0 10px;
  6.     width: 100%;
  7. }
  8. #question-tbl th
  9. {
  10.     font-size: 13px;
  11.     font-weight: normal;
  12.     padding: 8px;
  13.     background: #223457;
  14.     border-bottom: 1px solid #fff;
  15.     color: #fff;
  16.     text-transform: uppercase;
  17. }
  18. #question-tbl th img
  19. {
  20.     width:16px;
  21.     padding-right:10px;
  22. }
  23. #question-tbl td
  24. {
  25.     padding: 6px;
  26.     border-bottom: 1px solid #fff;
  27.     border-top: 1px solid transparent;
  28. }
  29. #question-tbl tr:nth-child(even)
  30. {
  31.     background: #efefef;
  32. }
  33. #question-tbl tr:hover td
  34. {
  35.     background: #d4deeb;
  36. }
  37. #score-tbl
  38. {
  39.     text-align: center;
  40.     width:100%;
  41.     height: 30px;
  42.     font-weight:700;
  43. }
  44. #score-tbl td.green
  45. {
  46.     background-color:#089408;
  47.     color:#0f0;
  48.     width:33%;
  49.     padding: 8px;
  50.     margin:0 2px 0 0;
  51. }
  52. #score-tbl td.red
  53. {
  54.     background-color:#940808;
  55.     color:red;
  56.     width:33%;
  57.     margin:0 2px;
  58. }
  59. #score-tbl td.gray
  60. {
  61.     background-color:#c8c8c8;
  62.     color:#666;
  63.     width:33%;
  64. }
  65. div.loading-invisible {
  66. display:none;
  67. }
  68.  
  69. div.loading-visible {
  70. background:#fff;
  71. border-bottom:1px solid #ddd;
  72. border-top:1px solid #ddd;
  73. display:block;
  74. height:100%;
  75. left:0;
  76. opacity:.75;
  77. padding-top:150px;
  78. position:absolute;
  79. text-align:center;
  80. top:142px;
  81. width:100%;
  82. }
  83.  
  84. #log-loader-2 {
  85.     float: left;
  86.     display: inline;
  87.     height: 16px;
  88.     background: transparent url('../../images/log-loader-1.gif') no-repeat scroll 0 0;
  89.     display:none;
  90.     padding-left: 25px;
  91. }
  92. .adminTag {
  93.     color: #FF6600;
  94. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement