| 1 | /* |
| 2 | * CSS for the options reference page. |
| 3 | * Putting it in its own file allows for iteration w/o re-running |
| 4 | * generate-documentation.py |
| 5 | */ |
| 6 | |
| 7 | p.option { |
| 8 | padding-left: 25px; |
| 9 | } |
| 10 | div.parameters { |
| 11 | padding-left: 15px; |
| 12 | } |
| 13 | #main { margin-top: 0; } |
| 14 | .row { margin-top: 0; } |
| 15 | .dygraphs-side-nav .nav>li>a { |
| 16 | padding-top: 2px; |
| 17 | padding-bottom: 2px; |
| 18 | } |
| 19 | |
| 20 | .dygraphs-side-nav { |
| 21 | background: #f9f9f9; |
| 22 | border-radius: 5px; |
| 23 | display: table; |
| 24 | overflow-y: scroll; |
| 25 | min-width: 200px; |
| 26 | } |
| 27 | |
| 28 | /* This prevents the sidenav from floating on top of the content on small |
| 29 | * screens, tablet and mobile. |
| 30 | * Where does 992px come from? */ |
| 31 | @media screen and (max-width: 992px) { |
| 32 | .dygraphs-side-nav.affix { |
| 33 | position: relative; |
| 34 | } |
| 35 | } |