1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
/*
* CSS for the options reference page.
* Putting it in its own file allows for iteration w/o re-running
* generate-documentation.py
*/
p.option {
padding-left: 25px;
}
div.parameters {
padding-left: 15px;
margin-bottom: 10px;
}
div.parameters table {
width: 100%;
table-layout: auto;
}
div.parameters th {
font-style: italic;
font-weight: normal;
text-align: right;
vertical-align: top;
width: 2em; /* more due to nowrap and table-layout=auto */
white-space: nowrap;
padding-right: 0.5em;
}
table.gallerylinks {
width: 100%;
table-layout: auto;
margin-bottom: 12px;
}
table.gallerylinks th {
font-style: normal;
font-weight: normal;
text-align: right;
vertical-align: top;
width: 2em; /* more due to nowrap and table-layout=auto */
white-space: nowrap;
padding-right: 0.5em;
}
#main { margin-top: 0; }
.row { margin-top: 0; }
.dygraphs-side-nav .nav>li>a {
padding-top: 2px;
padding-bottom: 2px;
}
.dygraphs-side-nav {
background: #f9f9f9;
border-radius: 5px;
display: table;
overflow-y: scroll;
min-width: 200px;
}
/* This prevents the sidenav from floating on top of the content on small
* screens, tablet and mobile.
* The 1199px are the -lg- grid size. */
@media screen and (max-width:1199px) {
.dygraphs-side-nav.affix {
position: relative;
}
}
.extlink {
color: #3300FF;
}
|