this repo has no description
1h1,
2h2,
3h3,
4h4,
5h5,
6h6 {
7 line-height: calc(var(--baselineStretch) * 1.144);
8 font-weight: 400;
9 clear: both;
10}
11
12h2,
13h3,
14h4 {
15 margin: var(--bigskip) 0 var(--smallskip);
16 font-style: italic;
17}
18
19h1 {
20 margin: var(--bigskip) 0 var(--smallskip);
21 text-transform: capitalize;
22 font-size: var(--huge);
23}
24
25h2 {
26 font-size: var(--LARGE);
27}
28
29h3 {
30 font-size: var(--Large);
31}
32
33h4 {
34 font-size: var(--large);
35}
36
37h5 {
38 margin: var(--smallskip) 0 0;
39}
40
41h5,
42h6 {
43 word-spacing: 16%;
44 letter-spacing: 0.16em;
45 font: var(--normalsize) var(--sf), sans-serif;
46 -webkit-font-feature-settings: 'c2sc' 1;
47 -moz-font-feature-settings: 'c2sc' 1;
48 font-feature-settings: 'c2sc' 1;
49 font-variant-caps: all-small-caps;
50}
51
52h6 {
53 position: relative;
54 float: left;
55 margin: 0;
56 padding: 0.6ex 0.5em 0 0;
57 line-height: 1;
58}
59
60/* section labeling
61
62#content.secnum {
63 counter-reset: section;
64}
65
66#content.secnum h2,
67#content.secnum h3,
68#content.secnum h4 {
69 position: relative;
70 font-style: normal;
71}
72
73#content.secnum h2::before,
74#content.secnum h3::before,
75#content.secnum h4::before {
76 position: absolute;
77 right: calc(100% + 1rem);
78 opacity: 0.86;
79 width: max-content;
80}
81
82#content.secnum h2::before {
83 counter-increment: section;
84 content: counter(section) '. ';
85}
86
87#content.secnum h2 {
88 counter-reset: subsection;
89}
90
91#content.secnum h3::before {
92 counter-increment: subsection;
93 content: counter(section) '.' counter(subsection)'. ';
94}
95
96#content.secnum h3 {
97 counter-reset: subsubsection;
98}
99
100#content.secnum h4::before {
101 counter-increment: subsubsection;
102 content: counter(section) '.' counter(subsection) '.' counter(subsubsection)'. ';
103} */
104
105/* #content.secnum h4 {
106 counter-reset: paragraph;
107}
108
109#content.secnum h5::before {
110 counter-increment: paragraph;
111}
112
113#content.secnum h5 {
114 counter-reset: subparagraph;
115}
116
117#content.secnum h6::before {
118 counter-increment: subparagraph;
119} */
120/*
121@media print, (max-width: 810px) {
122 #content.secnum h2::before,
123 #content.secnum h3::before,
124 #content.secnum h4::before {
125 position: unset;
126 right: unset;
127 }
128} */