Advertisement
Guest User

Untitled

a guest
Mar 26th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. table.k {
  2. border: 1px solid black;
  3. box-shadow: 5px 5px 10px gray;
  4. border-spacing: 0px;
  5.  
  6. }
  7.  
  8. table.k >td {
  9. padding: 5px;
  10.  
  11. }
  12.  
  13. table.k > thead > tr>td {
  14. background-color: #4682B4;
  15. color: whitesmoke;
  16. text-align: center;
  17. border-bottom: 1px solid #C0C0C0;
  18. border-left: 1px solid #C0C0C0;
  19.  
  20. }
  21.  
  22. table.k > thead> tr:first-child > td:first-child {
  23. border-left: none;
  24. }
  25.  
  26. table.k >tbody > tr.nieparzyste >td {
  27. background-color: #6495ED;
  28. text-align: right;
  29. border-top: 1px solid #C0C0C0;
  30. border-left: 1px solid #C0C0C0;
  31. }
  32.  
  33. table.k >tbody > tr:first-child > td {
  34. border-top: none;
  35. }
  36.  
  37. table.k >tbody >tr > td:first-child {
  38. border-left: none;
  39. font-size: 10px;
  40. }
  41.  
  42. table.k > tbody >tr:last-child > td {
  43. border-bottom: 1px solid black;
  44. }
  45.  
  46. table.k >tbody > tr.parzyste >td {
  47. background-color: #B0E0E6;
  48. text-align: right;
  49. border-top: 1px solid #C0C0C0;
  50. border-right: 1px solid #C0C0C0;
  51. }
  52. table.k >tbody>tr:hover>td {
  53. background-color : #edf4ff;
  54. }
  55.  
  56. table.k >tbody > tr > tr {
  57. border-bottom: 0px;
  58. }
  59.  
  60. table.k > tbody >tr >td.nazwa{
  61. text-align: left;
  62. }
  63.  
  64. table.k > tfoot >tr > td {
  65. border-top: 1px solid #C0C0C0;
  66. border-left: 1px solid #C0C0C0;
  67. background-color: #4169E1;
  68. font-size: 12px;
  69. font-weight: bold;
  70. text-align: right;
  71. }
  72.  
  73. table.k > tfoot >tr >td:first-child{
  74. text-align: left;
  75. }
  76.  
  77. table.k > tfoot >tr >td:first-child {
  78. border-left: none;
  79. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement