1 | @media screen and (min-width: 801px) {
|
2 | body {
|
3 | font-size: large;
|
4 | }
|
5 | }
|
6 |
|
7 | a:link {
|
8 | text-decoration: none;
|
9 | }
|
10 | a:hover {
|
11 | text-decoration: underline;
|
12 | }
|
13 |
|
14 | /* where help-index.html links to h2 in help.html */
|
15 | .group-link {
|
16 | font-family: monospace;
|
17 | color: darkgreen;
|
18 | }
|
19 |
|
20 | h1 {
|
21 | font-size: 1.4em;
|
22 | }
|
23 |
|
24 | h2 {
|
25 | font-size: 1.2em;
|
26 | }
|
27 |
|
28 | /* Copied from manual.css */
|
29 | p code, li code, h2 code, h3 code, div code {
|
30 | background-color: #eee;
|
31 | padding: 4px;
|
32 | }
|
33 |
|
34 | /*
|
35 | Tried columns, but it didn't fit on one screen. And it's not that portable.
|
36 | 40em works in Chrome, but not in Firefox?
|
37 |
|
38 | #groups {
|
39 | padding-top: 1em;
|
40 |
|
41 | columns: 2;
|
42 | column-width: 30em;
|
43 | }
|
44 | */
|
45 |
|
46 | #sublang {
|
47 | /* Works in Chrome but not Firefox? */
|
48 | break-after: column;
|
49 | }
|
50 |
|
51 |
|
52 | /* blocks of code */
|
53 | pre {
|
54 | /* 80 character width */
|
55 | width: 80ch;
|
56 | }
|
57 |
|
58 | #compact-title {
|
59 | font-weight: bold;
|
60 | float: left;
|
61 | }
|