blob: cac5e88e98e96d7c1e5250b3cf2e05af8a9536e2 [file] [log] [blame]
Gilles Peskine6c723a22020-04-17 16:57:52 +02001/* CSS overrides for the html output */
2
3body {
4 font-family: Calibri, sans-serif;
Gilles Peskinec2db5f02021-01-18 20:36:53 +01005 font-size: 15px;
Gilles Peskine6c723a22020-04-17 16:57:52 +02006}
7
8div.document {
Gilles Peskinec2db5f02021-01-18 20:36:53 +01009 width: 900px;
10}
11
12div.bodywrapper {
13 margin: 0 0 0 180px;
14}
15
16div.sphinxsidebar {
17 width: 180px;
18 font-size: 12.5px;
Gilles Peskine6c723a22020-04-17 16:57:52 +020019}
20
21div.body h1,
22div.body h2,
23div.body h3,
24div.body h4,
25div.body h5,
26div.body h6 {
27 font-family: Calibri, sans-serif;
28 font-weight: bold;
29}
30
31div.sphinxsidebar h3,
32div.sphinxsidebar h4 {
33 font-family: Calibri, sans-serif;
34}
35
36a {
37 color: #0091BD;
38 text-decoration: none;
39}
40
41a.reference {
42 border-bottom: none;
43}
44
45tt, code {
46 font-family: 'Consolas', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', monospace;
47 font-size: 0.85em;
48 background-color: white;
49}
50
51code.xref, a code {
52 font-weight: normal;
53 color: #0091BD;
54 background-color: white;
55}
56
57pre {
58 font-family: 'Consolas', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', monospace;
59 font-size: 0.8em;
60 background: #F7F7F7;
61 padding: 7px 10px;
62 margin: 15px 0px 15px 15px;
63 line-height: 1.3em;
64}
65
66table.docutils {
67 border: 0;
Gilles Peskinec2db5f02021-01-18 20:36:53 +010068 width: 100%;
69 -moz-box-shadow: none;
Gilles Peskine6c723a22020-04-17 16:57:52 +020070 -webkit-box-shadow: none;
71 box-shadow: none;
72 border-top: 1px solid #AAA;
73 border-bottom: 1px solid #AAA;
Gilles Peskinec2db5f02021-01-18 20:36:53 +010074 margin-bottom: 1em;
75}
76
77table.titletable {
78 margin-top: 40px;
79 width: auto;
80 border-top: none;
81 border-bottom: none;
82}
83
84table.docutils caption, div.figure p.caption {
85 font-size: 90%;
86 text-align: right;
87}
88
89table.docutils caption span.caption-number, div.figure p.caption span.caption-number {
90 font-weight: bold;
91 font-style: normal;
Gilles Peskine6c723a22020-04-17 16:57:52 +020092}
93
94table.docutils td, table.docutils th {
Gilles Peskinec2db5f02021-01-18 20:36:53 +010095 border: 0;
Gilles Peskine6c723a22020-04-17 16:57:52 +020096 padding: 0.3em 0.5em 0.3em 0.5em;
97 text-align: left;
98 vertical-align: top;
99}
100
Gilles Peskinec2db5f02021-01-18 20:36:53 +0100101table.docutils td p, table.docutils th p {
102 margin-block-start: .3em;
103 margin-block-end: .3em;
104}
105
106table.docutils th > p:first-child, table.docutils td > p:first-child {
107 margin-top: 0px;
108}
109
Gilles Peskine6c723a22020-04-17 16:57:52 +0200110table.docutils th {
Gilles Peskinec2db5f02021-01-18 20:36:53 +0100111 font-weight: bold;
112 font-size: 90%;
113}
114
115table.docutils th.stub {
116 border-bottom: none;
117}
118
119table.docutils th.head {
Gilles Peskine6c723a22020-04-17 16:57:52 +0200120 border-bottom: 1px solid #AAA;
121}
122
Gilles Peskinec2db5f02021-01-18 20:36:53 +0100123div.figure div.legend {
124 font-size: 80%;
125 font-style: italic;
126 text-align: center;
127}
128
129div.figure p.caption, div.figure div.legend p {
130 margin-block-start: 0.2em;
131 margin-block-end: 0.5em;
Gilles Peskine6c723a22020-04-17 16:57:52 +0200132}
133
134div.admonition {
135 margin: 5px 15px;
136 padding: 5px 15px;
137 background-color: #FFF;
138 border: 0;
139 border-left: 6px solid #DDD;
140}
141
Gilles Peskine6c723a22020-04-17 16:57:52 +0200142div.admonition p.admonition-title {
143 font-family: Calibri, sans-serif;
144 font-weight: bold;
145 font-size: 90%;
146}
147
Gilles Peskinec2db5f02021-01-18 20:36:53 +0100148p.admonition-title:after {
149 content: "";
Gilles Peskine6c723a22020-04-17 16:57:52 +0200150}
151
152div.admonition p {
153 margin-top: 0;
154 margin-bottom: 5px;
155}
156
Gilles Peskinec2db5f02021-01-18 20:36:53 +0100157div.warning {
158 border-left: 6px solid #FBB;
159}
160
161div.warning p.admonition-title {
162 color: darkred;
163}
164
165div.banner {
166 border: 2px solid #CC0;
167 background-color: #FFB;
168}
169
170div.rationale {
171 border-left: 6px solid #BFB;
172 background-color: #EFE;
173}
174
175div.rationale p.admonition-title {
176 color: darkgreen;
177}
178
179.scterm, .sc {
180 font-variant: small-caps;
181 text-transform: lowercase;
182}
183
184.term {
185 font-style: italic;
186}
187
188.license{
189 font-size: 80%;
190}
191
192.anchor {
193 color: #0091BD;
194}
195
196.issue {
197 color: red;
198}
199
200.secref {
201 font-style: italic;
202}
203
204.sectiontitle {
205 display: block;
206 margin-top: 30px;
207 font-weight: bold;
208 font-size: 180%;
209}
210
211p.titlecopyright {
212 font-size: 70%;
213 text-align: right;
Gilles Peskine6c723a22020-04-17 16:57:52 +0200214}