blob: d5764a4de5a2cc7702936d10853f49f633d1d938 [file] [log] [blame]
Markus Heiserbc214672016-07-03 10:05:28 +02001/* -*- coding: utf-8; mode: css -*-
2 *
Markus Heiser9abaf972016-07-03 05:09:32 -03003 * Sphinx HTML theme customization: read the doc
Markus Heiserbc214672016-07-03 10:05:28 +02004 *
5 */
6
7@media screen {
8
Markus Heiser9abaf972016-07-03 05:09:32 -03009 /* content column
10 *
11 * RTD theme's default is 800px as max width for the content, but we have
12 * tables with tons of columns, which need the full width of the view-port.
13 */
14
15 .wy-nav-content{max-width: none; }
16
17 /* table:
18 *
19 * - Sequences of whitespace should collapse into a single whitespace.
20 * - make the overflow auto (scrollbar if needed)
21 * - align caption "left" ("center" is unsuitable on vast tables)
22 */
23
24 .wy-table-responsive table td { white-space: normal; }
25 .wy-table-responsive { overflow: auto; }
26 .rst-content table.docutils caption { text-align: left; font-size: 100%; }
27
Markus Heiser4eb40f12016-07-03 05:14:03 -030028 /* captions:
29 *
30 * - captions should have 100% (not 85%) font size
31 * - hide the permalink symbol as long as link is not hovered
32 */
33
Mauro Carvalho Chehabef88f102016-07-19 12:35:08 -030034 .toc-title {
35 font-size: 150%;
36 font-weight: bold;
37 }
38
Markus Heiser4eb40f12016-07-03 05:14:03 -030039 caption, .wy-table caption, .rst-content table.field-list caption {
40 font-size: 100%;
41 }
42 caption a.headerlink { opacity: 0; }
43 caption a.headerlink:hover { opacity: 1; }
44
Mauro Carvalho Chehab1414f042016-09-19 08:07:35 -030045 /* Menu selection and keystrokes */
46
47 span.menuselection {
48 color: blue;
49 font-family: "Courier New", Courier, monospace
50 }
51
52 code.kbd, code.kbd span {
53 color: white;
54 background-color: darkblue;
55 font-weight: bold;
56 font-family: "Courier New", Courier, monospace
57 }
58
Markus Heiserd1669c82016-08-05 11:19:43 +020059 /* inline literal: drop the borderbox, padding and red color */
Markus Heiser4eb40f12016-07-03 05:14:03 -030060
61 code, .rst-content tt, .rst-content code {
62 color: inherit;
63 border: none;
Markus Heiserd1669c82016-08-05 11:19:43 +020064 padding: unset;
Markus Heiser4eb40f12016-07-03 05:14:03 -030065 background: inherit;
66 font-size: 85%;
67 }
68
69 .rst-content tt.literal,.rst-content tt.literal,.rst-content code.literal {
70 color: inherit;
71 }
Markus Heiserbc214672016-07-03 10:05:28 +020072}