| 1 | @media screen and (min-width: 801px) {
|
| 2 | body {
|
| 3 | font-size: large;
|
| 4 | }
|
| 5 | body > pre {
|
| 6 | margin-left: initial;
|
| 7 | }
|
| 8 | }
|
| 9 |
|
| 10 | /* Not used - could we use it for chapters? */
|
| 11 | .custom-toc {
|
| 12 | background-color: oldlace;
|
| 13 | /*
|
| 14 | padding-left: 1em;
|
| 15 | padding-right: 1em;
|
| 16 | padding-top: 1px;
|
| 17 | padding-bottom: 1px;
|
| 18 | */
|
| 19 |
|
| 20 | column-width: 8em;
|
| 21 | }
|
| 22 |
|
| 23 | a:link {
|
| 24 | text-decoration: none;
|
| 25 | }
|
| 26 | a:hover {
|
| 27 | text-decoration: underline;
|
| 28 | }
|
| 29 |
|
| 30 | /* e.g. type-method for chap-type-method.html */
|
| 31 | .group-link {
|
| 32 | font-family: monospace;
|
| 33 | font-weight: normal; /* not bold like heading */
|
| 34 | float: right;
|
| 35 | }
|
| 36 |
|
| 37 | h1 {
|
| 38 | font-size: 1.4em;
|
| 39 | }
|
| 40 |
|
| 41 | h2 {
|
| 42 | font-size: 1.2em;
|
| 43 | }
|
| 44 |
|
| 45 | /* Copied from manual.css */
|
| 46 | p code, li code, h2 code, h3 code, div code {
|
| 47 | background-color: #eee;
|
| 48 | padding: 4px;
|
| 49 | }
|
| 50 |
|
| 51 | /*
|
| 52 | Tried columns, but it didn't fit on one screen. And it's not that portable.
|
| 53 | 40em works in Chrome, but not in Firefox?
|
| 54 |
|
| 55 | #groups {
|
| 56 | padding-top: 1em;
|
| 57 |
|
| 58 | columns: 2;
|
| 59 | column-width: 30em;
|
| 60 | }
|
| 61 | */
|
| 62 |
|
| 63 | #sublang {
|
| 64 | /* Works in Chrome but not Firefox? */
|
| 65 | break-after: column;
|
| 66 | }
|
| 67 |
|
| 68 | #compact-title {
|
| 69 | font-weight: bold;
|
| 70 | float: left;
|
| 71 | }
|