1+ /* -- Extra CSS styles for content (RTD theme) ----------------------- */
2+
3+ /* make the page width fill the window */
4+ .wy-nav-content {
5+ max-width : 1080px ;
6+ }
7+
8+ /* increase the size of the side bar from 300px default to 320px */
9+ .wy-nav-side {
10+ width : 320px ;
11+ }
12+
13+ .wy-side-scroll {
14+ width : 340px ;
15+ }
16+
17+ .wy-side-nav-search {
18+ width : 320px ;
19+ }
20+
21+ .wy-menu-vertical {
22+ width : 320px ;
23+ }
24+
25+ /* (temporarily) add an under development tagline to the bread crumb
26+ .wy-breadcrumbs::after {
27+ content: " (Content under development)";
28+ background-color: #FFFACD;
29+ color: red;
30+ font-weight: bold;
31+ }
32+ */
33+
34+ /* code block highlight color in rtd changed to lime green, no no no */
35+
36+ .rst-content tt .literal , .rst-content code .literal , .highlight {
37+ background : # f0f0f0 ;
38+ }
39+ .rst-content tt .literal , .rst-content code .literal {
40+ color : # 000000 ;
41+ }
42+
43+ /* Make the version number more visible */
44+ .wy-side-nav-search > div .version {
45+ color : rgba (255 , 255 , 255 , 1 );
46+ }
47+
48+ /* squish the space between a paragraph before a list */
49+ div > p + ul , div > p + ol {
50+ margin-top : -20px ;
51+ }
52+
53+ /* add some space before the figure caption */
54+ p .caption {
55+ border-top : 1px solid;
56+ margin-top : 1em ;
57+ }
58+
59+ /* add a colon after the figure/table number (before the caption) */
60+ span .caption-number ::after {
61+ content : ": " ;
62+ }
63+
64+ p .extrafooter {
65+ text-align : right;
66+ margin-top : -36px ;
67+ }
68+
69+ table .align-center {
70+ display : table !important ;
71+ }
72+
73+
74+ .code-block-caption {
75+ color : # 000 ;
76+ font : italic 85% / 1 arial, sans-serif;
77+ padding : 1em 0 ;
78+ text-align : center;
79+ }
80+
81+ /* make .. hlist:: tables fill the page */
82+ table .hlist {
83+ width : 95% !important ;
84+ }
85+
86+ /* override rtd theme white-space no-wrap in table heading and content */
87+ th , td {
88+ white-space : normal !important ;
89+ }
90+
91+ /* tweak for doxygen-generated API headings (for RTD theme) */
92+ .rst-content dl .group > dt , .rst-content dl .group > dd > p {
93+ display : none !important ;
94+ }
95+ .rst-content dl .group {
96+ margin : 0 0 12px 0px ;
97+ }
98+ .rst-content dl .group > dd {
99+ margin-left : 0 !important ;
100+ }
101+ .rst-content p .breathe-sectiondef-title {
102+ text-decoration : underline; /* for API sub-headings */
103+ font-size : 1.25rem ;
104+ font-weight : bold;
105+ margin-bottom : 12px ;
106+ }
107+
108+ .rst-content div .breathe-sectiondef {
109+ padding-left : 0 !important ;
110+ }
111+
112+ .clps1 {
113+ font-size : 175% ;
114+ }
115+
116+ .clps2 {
117+ font-size : 150% ;
118+ }
119+
120+ .clps3 {
121+ font-size : 125% ;
122+ }
123+
124+ .clps4 {
125+ font-size : 115% ;
126+ }
127+
128+ .clps5 {
129+ font-size : 110% ;
130+ }
131+
132+ .clps6 {
133+ font-size : 100% ;
134+ }
135+
136+ .collapsible {
137+ margin-left : -10px ;
138+ background-color : # f1f1f1 ;
139+ cursor : pointer;
140+ padding : 18px 18px 18px 10px ;
141+ width : 100% ;
142+ border : none;
143+ text-align : left;
144+ outline : none;
145+ font-weight : 700 ;
146+ font-family : "Roboto Slab" , "ff-tisa-web-pro" , "Georgia" , Arial, sans-serif;
147+ }
148+
149+ .collapsible : hover {
150+ background-color : # d8d8d8 ;
151+ }
152+
153+ .collapsible : after {
154+ content : '\002B' ;
155+ font-weight : bold;
156+ float : right;
157+ margin-left : 5px ;
158+ }
159+
160+ .active : after {
161+ content : "\2212" ;
162+ }
163+
164+ .content-collapse {
165+ overflow : hidden;
166+ transition : max-height 0.2s ease-out;
167+ }
168+
169+ .header__menu_list li {
170+ display : inline;
171+ margin-left : 20px ;
172+ }
0 commit comments