Advertisement
Guest User

ie9 style

a guest
Feb 24th, 2012
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.00 KB | None | 0 0
  1. <style>
  2.  
  3. table#rec_bill_tbl {
  4. width:95%;
  5. border-collapse: collapse;
  6. margin:auto;
  7. -moz-box-shadow: 10px 10px 5px #888;
  8. -webkit-box-shadow: 10px 10px 5px #888;
  9. box-shadow: 10px 10px 5px #888;
  10. }
  11.  
  12. table#rec_bill_tbl th:nth-child(1) {
  13. width:20px;
  14. }
  15.  
  16. table#rec_bill_tbl td {
  17. border:1px solid #eee;
  18. }
  19.  
  20. table#rec_bill_tbl td:nth-child(8) {
  21. word-wrap:break-word;
  22. width:40px;
  23. }
  24.  
  25.  
  26.  
  27. table#rec_bill_tbl > th, td {
  28. border:none;
  29. }
  30.  
  31. table#rec_bill_tbl tr:nth-child(1), th {
  32. text-align:center;
  33. color:white;
  34. }
  35.  
  36. table#rec_bill_tbl tr:nth-child(1), th:first-child {
  37. border-top-left-radius:5px;
  38. -moz-border-top-left-radius:5px;
  39. -webkit-border-top-left-radius:5px;
  40. }
  41.  
  42. table#rec_bill_tbl tr:nth-child(1), th:last-child {
  43. border-top-right-radius:5px;
  44. -moz-border-top-right-radius:5px;
  45. -webkit-border-top-right-radius:5px;
  46. }
  47.  
  48. table#rec_bill_tbl tr:nth-child(n+1) {
  49. font-weight:normal;
  50. }
  51.  
  52. table#rec_bill_tbl tr:nth-of-type(even) {
  53. background-color:#ddd;
  54. }
  55.  
  56. table#rec_bill_tbl tr:nth-of-type(odd) {
  57. background-color:#fff;
  58. }
  59.  
  60. table#rec_bill_tbl tr td:last-child {
  61. font-weight:bold;
  62. text-align:center;
  63. color:red;
  64. font-size:20px;
  65. text-shadow: 2px 2px 2px rgb(20, 0, 0);
  66. }
  67.  
  68. table#rec_bill_tbl th {
  69. background-image: -moz-linear-gradient(top, #2A497D, #afcbe7);
  70. background-image: -webkit-gradient(linear, left top, left bottom,
  71. color-stop(0, #2A497D),
  72. color-stop(2, #afcbe7));
  73. background-image: linear-gradient(top, #2A497D, #afcbe7);
  74. }
  75.  
  76. table#rec_bill_tbl tr:nth-child(n+2):hover {
  77. background-color: lightyellow;
  78. }
  79.  
  80. h1 {
  81. font-size:30px;
  82. font-style:Verdana;
  83. padding-left:30px;
  84. text-shadow: 2px 2px 2px rgb(200, 200, 200);
  85. }
  86.  
  87.  
  88. section#report_meta_data {
  89. width:94%;
  90. margin:auto;
  91. }
  92.  
  93. article#excel {
  94. float:left;
  95. font-size:20px;
  96. }
  97.  
  98. article#num_records {
  99. font-size:15px;
  100. float:right;
  101. font-weight:bold;
  102. }
  103.  
  104. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement