-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathieee.css
113 lines (97 loc) · 2.21 KB
/
ieee.css
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
@font-face {
font-family: 'Courier New';
src: url('fonts/Cour.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
body {
padding: 0; /* use custom margin */
font-family: 'Times New Roman', serif;
font-weight: normal;
}
/* Title and authors at the top of the page. */
.title > p {
text-align: center;
font-size: 24pt;
line-height: 1.0;
margin-bottom: 34px;
}
.authors {
display: flex;
justify-content: center;
flex-wrap: wrap;
font-size: 9pt;
gap: 12px;
line-height: 1.0;
margin-top: 34px;
margin-bottom: 24px;
} .authors > p {
width: 175px;
font-size: 9pt;
text-align: center;
}
/* Main layout that distributes children proportionally in 2 columns. */
.content {
column-count: 2;
column-width: 3.44in; /* from 3.45in */
column-gap: 0.2in;
margin-top: 18px;
} .content > * {
font-size: 10pt;
line-height: 0.95;
} .content > h1 {
font-weight: normal;
font-size: 24pt;
} .content > h2 {
font-weight: normal;
font-size: 12pt;
font-variant: small-caps;
text-align: center;
} .content > h3, h4, h5, h6 {
font-style: italic;
font-size: 10pt;
} .content > small {
font-size: 7pt;
} .content > .hljs > code {
font-family: 'Courier New', monospace;
font-weight: normal;
font-size: 8pt;
line-height: 0.95;
} .content > pre:not(.hljs), pre.hljs code > div {
padding: 2pt;
} .content > pre:not(.hljs) {
padding: 4pt;
line-height: 0.95;
} .content > p {
text-align: justify;
text-indent: 0.2in;
margin-top: 0;
margin-bottom: 0;
} .content > p > img {
margin-left: -0.2in;
} .content > blockquote > p {
text-align: left;
text-indent: 0in;
}
/* Figures and references are within content section, use nested markdown-it-container. See more at
https://github.com/markdown-it/markdown-it-container/issues/36. */
.figure > p {
font-size: 8pt;
}
.references > ol {
counter-reset: list;
display: table;
padding-inline-start: 0px;
} .references > ol > li {
font-size: 8pt;
line-height: 9pt;
counter-increment: list;
display: table-row;
} .references > ol > li:before {
text-align: right;
content: "[" counter(list) "] ";
display: table-cell;
padding-right: 4px;
} .references > ol > li:not(:last-child) {
margin-bottom: 2.5pt;
}