mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-02-23 16:59:54 +08:00
- sync oc2 with master for https://DennisHeimbigner@github.com/Unidata/oc.git - Cleanup auth.html documentation. - Cleanup obsolete documentation.
40 lines
695 B
CSS
40 lines
695 B
CSS
<style>
|
|
.break { page-break-before: always; }
|
|
body { counter-reset: H2; font-size: 12pt; }
|
|
h1.title {
|
|
font-size: 18pt;
|
|
text-decoration: underline;
|
|
}
|
|
div.subtitle {
|
|
}
|
|
.subtitle h1 {
|
|
font-size: 14pt;
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
h1.toc {
|
|
font-size: 16pt;
|
|
text-decoration: underline;
|
|
}
|
|
h1.appendix {
|
|
font-size: 14pt;
|
|
}
|
|
|
|
h2:before {
|
|
content: counter(H2) " ";
|
|
counter-increment: H2;
|
|
}
|
|
h2 { counter-reset: H3; text-decoration: underline; }
|
|
h3:before {
|
|
content: counter(H2) "." counter(H3) " ";
|
|
counter-increment:H3;
|
|
}
|
|
h3 { counter-reset: H4; }
|
|
h4:before {
|
|
content: counter(H2) "." counter(H3) "." counter(H4) " ";
|
|
counter-increment:H4;
|
|
}
|
|
|
|
</style>
|