123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <style>
- /* gpsd CSS customization. */
- #header > h1:first-child,
- body {
- color: #000;
- }
- .sidebarblock,
- #toc.toc2 {
- background: #f8f8f8;
- border: 1px dashed #999;
- }
- .sidebarblock {
- display: inline-block;
- float: left;
- margin-right: 20px;
- margin-bottom: 20px;
- }
- #toctitle {
- display: none;
- }
- #content #toc.toc {
- background: inherit;
- border: none;
- padding: 0em;
- }
- #header,
- #content,
- #footnotes,
- #footer {
- max-width: initial;
- }
- @media screen and (min-width: 768px) {
- body {
- --left-col: 15em;
- }
- #content #Menu {
- border: 1px dashed #999;
- bottom: 2px;
- left: 2px;
- margin: 0 20px 20px 0;
- position: absolute;
- top: 2px;
- width: var(--left-col);
- }
- #content #preamble,
- #content .sect1 {
- margin-left: calc(var(--left-col) + 22px);
- }
- }
- </style>
|