Advertisement
Guest User

Untitled

a guest
Dec 8th, 2016
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.36 KB | None | 0 0
  1. img {
  2. border: 1px solid #aaa;
  3. max-width: 100%;
  4. margin: 5px;
  5. }
  6.  
  7. .table-wrapper {
  8. overflow: auto;
  9. }
  10.  
  11. .tputbl {
  12. border-collapse: collapse;
  13. border: 1px solid #666;
  14. font-family: Verdana, Helvetica, sans-serif;
  15. font-size: 9pt;
  16. color: #000;
  17. background-color: #f4f4f4;
  18. max-width: 100%;
  19. margin: 0 0 5px;
  20. padding: 0;
  21. }
  22.  
  23. .tputbl caption {
  24. caption-side: bottom;
  25. font-size: 85%;
  26. font-style: italic;
  27. text-align: right;
  28. color: #999;
  29. padding: 1px 2px .5em 0;
  30. }
  31.  
  32. .tputbl th, .tputbl td {
  33. border: 1px dotted #999;
  34. text-align: left;
  35. padding: .5em;
  36. }
  37.  
  38. .tputbl.nocellborder th, .tputbl.nocellborder td {
  39. border: 0;
  40. }
  41.  
  42. .tputbl th[align=right], .tputbl td[align=right] {
  43. text-align: right;
  44. }
  45.  
  46. .tputbl th[align=center], .tputbl td[align=center] {
  47. text-align: center;
  48. }
  49.  
  50. .tputbl th[valign=top], .tputbl td[valign=top] {
  51. vertical-align: top;
  52. }
  53.  
  54. .tputbl th[valign=bottom], .tputbl td[valign=bottom] {
  55. vertical-align: bottom;
  56. }
  57.  
  58. .tputbl th[valign=baseline], .tputbl td[valign=baseline] {
  59. vertical-align: baseline;
  60. }
  61.  
  62. .tputbl th[scope=col] {
  63. color: #fff;
  64. text-shadow: 0 -1px 0 #000;
  65. background-color: #458;
  66. border-bottom: 2px solid #333;
  67. border-right: 2px solid #333;
  68. font: normal 1.05em/1.32em Segoe UI, Tahoma, Geneva, sans-serif;
  69. letter-spacing: .7px;
  70. }
  71.  
  72. .tputbl th + th[scope=col] {
  73. border-right: 1px dotted #999;
  74. }
  75.  
  76. .tputbl th[scope=row] {
  77. background-color: #F8F8FF;
  78. border-right: 2px solid #333;
  79. font-weight: 400;
  80. }
  81.  
  82. .tputbl tr:nth-child(odd) td {
  83. background-color: #fff;
  84. }
  85.  
  86. .tputbl tr:nth-child(2n+2) th {
  87. background-color: #e6eaf7;
  88. }
  89.  
  90. .tputbl.hilight tr:hover th[scope=row], .tputbl.hilight tr:hover td {
  91. background-color: #fff;
  92. border-top-style: solid;
  93. border-bottom-style: solid;
  94. border-color: #555;
  95. }
  96.  
  97. .tputbl .tputbl p {
  98. margin: 0;
  99. }
  100.  
  101. .tputbl thead th {
  102. color: #fff;
  103. text-shadow: 0 -1px 0 #000;
  104. background-color: #458 !important;
  105. border-bottom: 2px solid #333;
  106. font: bold 1.3em Segoe UI, Tahoma, Geneva, sans-serif;
  107. letter-spacing: .7px;
  108. text-align: center;
  109. padding-left: 1em;
  110. padding-right: 1em;
  111. }
  112.  
  113. @media (max-width 500px) {
  114. .tputbl th[scope=row] {
  115. width: auto;
  116. }
  117. }
  118.  
  119. #result img {
  120. border: none;
  121. vertical-align: middle;
  122. margin: 5px;
  123. }
  124.  
  125. .review #result td > img {
  126. width: 100px;
  127. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement