Dave Barach | 8e83bcb | 2018-08-09 16:12:20 -0400 | [diff] [blame] | 1 | /* Allows for tables to be center-aligned */ |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 2 | table.center-align-table td { |
| 3 | text-align: center; |
| 4 | } |
| 5 | |
Dave Barach | 8e83bcb | 2018-08-09 16:12:20 -0400 | [diff] [blame] | 6 | /* override table width restrictions */ |
| 7 | @media screen and (min-width: 767px) { |
| 8 | |
| 9 | .wy-table-responsive table td { |
| 10 | /* !important prevents the common CSS stylesheets from overriding |
| 11 | this as on RTD they are loaded after this stylesheet */ |
| 12 | white-space: normal !important; |
| 13 | } |
| 14 | |
| 15 | .wy-table-responsive { |
| 16 | overflow: visible !important; |
| 17 | } |
| 18 | } |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 19 | |