Markus Heiser | bc21467 | 2016-07-03 10:05:28 +0200 | [diff] [blame] | 1 | /* -*- coding: utf-8; mode: css -*- |
| 2 | * |
Markus Heiser | 9abaf97 | 2016-07-03 05:09:32 -0300 | [diff] [blame] | 3 | * Sphinx HTML theme customization: read the doc |
Markus Heiser | bc21467 | 2016-07-03 10:05:28 +0200 | [diff] [blame] | 4 | * |
| 5 | */ |
| 6 | |
| 7 | @media screen { |
| 8 | |
Markus Heiser | 9abaf97 | 2016-07-03 05:09:32 -0300 | [diff] [blame] | 9 | /* content column |
| 10 | * |
| 11 | * RTD theme's default is 800px as max width for the content, but we have |
| 12 | * tables with tons of columns, which need the full width of the view-port. |
| 13 | */ |
| 14 | |
| 15 | .wy-nav-content{max-width: none; } |
| 16 | |
| 17 | /* table: |
| 18 | * |
| 19 | * - Sequences of whitespace should collapse into a single whitespace. |
| 20 | * - make the overflow auto (scrollbar if needed) |
| 21 | * - align caption "left" ("center" is unsuitable on vast tables) |
| 22 | */ |
| 23 | |
| 24 | .wy-table-responsive table td { white-space: normal; } |
| 25 | .wy-table-responsive { overflow: auto; } |
| 26 | .rst-content table.docutils caption { text-align: left; font-size: 100%; } |
| 27 | |
Markus Heiser | 4eb40f1 | 2016-07-03 05:14:03 -0300 | [diff] [blame^] | 28 | /* captions: |
| 29 | * |
| 30 | * - captions should have 100% (not 85%) font size |
| 31 | * - hide the permalink symbol as long as link is not hovered |
| 32 | */ |
| 33 | |
| 34 | caption, .wy-table caption, .rst-content table.field-list caption { |
| 35 | font-size: 100%; |
| 36 | } |
| 37 | caption a.headerlink { opacity: 0; } |
| 38 | caption a.headerlink:hover { opacity: 1; } |
| 39 | |
| 40 | /* inline literal: drop the borderbox and red color */ |
| 41 | |
| 42 | code, .rst-content tt, .rst-content code { |
| 43 | color: inherit; |
| 44 | border: none; |
| 45 | background: inherit; |
| 46 | font-size: 85%; |
| 47 | } |
| 48 | |
| 49 | .rst-content tt.literal,.rst-content tt.literal,.rst-content code.literal { |
| 50 | color: inherit; |
| 51 | } |
| 52 | |
Markus Heiser | bc21467 | 2016-07-03 10:05:28 +0200 | [diff] [blame] | 53 | } |