-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocument.css
More file actions
56 lines (55 loc) · 1.06 KB
/
document.css
File metadata and controls
56 lines (55 loc) · 1.06 KB
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
48
49
50
51
52
53
54
55
56
@import url("base.css");
@import url("screen.css") screen;
@import url("document-print.css") print;
*:not(nav):not(header) h1 {
font-size: 140%;
margin: .9em 0 .4em 0;
counter-reset: h2 h3 h4;
}
*:not(nav):not(header) > h1:before {
counter-increment: h1;
content: counter(h1);
float: left;
width: 13mm;
}
h2 {
font-size: 130%;
margin: .8em 0 .4em 0;
counter-reset: h3 h4;
}
h2:before {
counter-increment: h2;
content: counter(h1) "." counter(h2);
float: left;
width: 13mm;
}
h3 {
font-size: 120%;
margin: .8em 0 .4em 0;
counter-reset: h4;
}
h3:before {
counter-increment: h3;
content: counter(h1) "." counter(h2) "." counter(h3) " ";
}
h4 {
font-size: 115%;
margin: .8em 0 .4em 0;
}
h4:before {
counter-increment: h4;
content: counter(h1) "." counter(h2) "." counter(h3) "." counter(h4) " ";
}
h5 {
font-size: 110%;
margin: .6em 0 .3em 0;
}
#abstract:before {
content: var(--translation-abstract, "Abstract") "\A";
white-space: pre;
width: 100%;
font-family: var(--font-caption, sans-serif);
font-size: 140%;
display: inline-block;
text-align: center;
}