Advertisement
Sergiyco

LeadsGuru tablepress3

Feb 6th, 2023
1,090
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.00 KB | None | 0 0
  1. /* Table headers */
  2. .tablepress thead th,
  3. .tablepress tfoot th {
  4.     background-color: #ffffff;
  5.     color: #000000;
  6. }
  7.  
  8. /* Odd rows' styling */
  9. .tablepress .odd td {
  10.     background-color: #EEF0F3;
  11. }
  12.  
  13. /* Even rows' styling */
  14. .tablepress .even td {
  15. }
  16.  
  17. /* Active row hover */
  18. .tablepress .row-hover tr:hover td {
  19.     background-color: #EEF0F3;
  20.     color: #111111;
  21. }
  22.  
  23. .tablepress-id-1 .row-1 td,
  24. .tablepress-id-4 .row-1 td,
  25. .tablepress-id-5 .row-1 td {
  26.     background-color: #fff;
  27.     color: #000000;
  28.     font-weight: 700;
  29.     font-size: 30px;
  30. }
  31.  
  32. .tablepress-id-1 .row-2 td,
  33. .tablepress-id-4 .row-2 td,
  34. .tablepress-id-5 .row-2 td {
  35.     font-weight: 600;
  36.     font-size: 30px;
  37.     color: #000000;
  38. }
  39.  
  40. /* Fonts */
  41. .tablepress-id-1 tbody td,
  42. .tablepress-id-4 tbody td,
  43. .tablepress-id-5 tbody td {
  44.     font-family: Montserrat, sans-serif;
  45.     font-size: 16px;
  46.     font-weight: 400;
  47.     color: #000000;
  48.     text-align: center;
  49.     padding: 10px 10px;
  50. }
  51.  
  52. /* Centering tables */
  53. .tablepress-id-1,
  54. .tablepress-id-4,
  55. .tablepress-id-5 {
  56.     width: auto;
  57.     margin: 0 auto 1em;
  58. }
  59.  
  60. /*  */
  61. .tablepress-id-1,
  62. .tablepress-id-1 tr,
  63. .tablepress-id-1 tbody td,
  64. .tablepress-id-1 thead th,
  65. .tablepress-id-1 tfoot th,
  66. .tablepress-id-4,
  67. .tablepress-id-4 tr,
  68. .tablepress-id-4 tbody td,
  69. .tablepress-id-5,
  70. .tablepress-id-5 tr,
  71. .tablepress-id-5 tbody td {
  72.     border: none;
  73. }
  74.  
  75. /* */
  76. .tablepress-id-1 .column-2,
  77. .tablepress-id-1 .column-3,
  78. .tablepress-id-1 .column-4,
  79. .tablepress-id-4 .column-2,
  80. .tablepress-id-4 .column-3,
  81. .tablepress-id-4 .column-4,
  82. .tablepress-id-5 .column-2 {
  83.     width: 140px;
  84. }
  85.  
  86. .tablepress-id-1 .column-2,
  87. .tablepress-id-1 .column-3,
  88. .tablepress-id-1 .column-4 {
  89.     color: #000000;
  90. }
  91.  
  92. .tablepress-id-1 .column-1,
  93. .tablepress-id-4 .column-1,
  94. .tablepress-id-5 .column-1 {
  95.     text-align: left;
  96.     font-weight: 700;
  97.     color: #000000;
  98. }
  99.  
  100. /*  color: #000000; */
  101. .tablepress-id-1 .row-3,
  102. .tablepress-id-1 .row-13,
  103. .tablepress-id-1 .row-15 {
  104.     color: #000000;
  105. }
  106.  
  107. .tablepress-id-1 .column-2:hover {
  108.     border: 1px solid #000000;
  109. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement