Advertisement
Sergiyco

LeadsGuru tablepress

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