-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpaper.css
More file actions
47 lines (46 loc) · 879 Bytes
/
paper.css
File metadata and controls
47 lines (46 loc) · 879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
@import url("base.css");
@import url("screen.css") screen;
@import url("paper-print.css") print;
*:not(nav):not(header) > h1:before {
counter-increment: h1;
content: counter(h1);
float: left;
width: 13mm;
}
*:not(nav):not(header) > h1 {
font-size: 14pt;
margin: 20pt 0 12pt 0;
counter-reset: h2 h3 h4;
}
h2:before {
counter-increment: h2;
content: counter(h1) "." counter(h2);
float: left;
width: 13mm;
}
h2 {
font-size: 12pt;
margin: 16pt 0 8pt 0;
counter-reset: h3 h4;
}
h3:before {
counter-increment: h3;
content: counter(h1) "." counter(h2) "." counter(h3) " ";
float: left;
width: 13mm;
}
h3 {
font-size: 11pt;
margin: 16pt 0 8pt 0;
counter-reset: h4;
}
h4:before {
counter-increment: h4;
content: counter(h1) "." counter(h2) "." counter(h3) "." counter(h4) " ";
float: left;
width: 13mm;
}
h4, h5 {
font-size: 10pt;
margin: 8pt 0 3pt 0;
}