You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

theme.css 26 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383
  1. /*
  2. This file is based on the ReadTheDocs theme from mkdocs, however it's been cleaned up and only the css elements needed in the
  3. templates are included.
  4. Colors are defined in theme_colors.css. They can be adjusted there
  5. */
  6. * {
  7. -webkit-box-sizing: border-box;
  8. -moz-box-sizing: border-box;
  9. box-sizing: border-box;
  10. }
  11. /* #region local font face definitions */
  12. /* source-sans-pro-300 - latin-ext_latin */
  13. @font-face {
  14. font-family: 'Source Sans Pro';
  15. font-style: normal;
  16. font-weight: 300;
  17. src: url('../fonts/source-sans-pro-v9-latin-ext_latin-300.eot'); /* IE9 Compat Modes */
  18. src: local('Source Sans Pro Light'), local('SourceSansPro-Light'), url('../fonts/source-sans-pro-v9-latin-ext_latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  19. url('../fonts/source-sans-pro-v9-latin-ext_latin-300.woff2') format('woff2'), /* Super Modern Browsers */
  20. url('../fonts/source-sans-pro-v9-latin-ext_latin-300.woff') format('woff'), /* Modern Browsers */
  21. url('../fonts/source-sans-pro-v9-latin-ext_latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
  22. url('../fonts/source-sans-pro-v9-latin-ext_latin-300.svg#SourceSansPro') format('svg'); /* Legacy iOS */
  23. }
  24. /* source-sans-pro-300italic - latin-ext_latin */
  25. @font-face {
  26. font-family: 'Source Sans Pro';
  27. font-style: italic;
  28. font-weight: 300;
  29. src: url('../fonts/source-sans-pro-v9-latin-ext_latin-300italic.eot'); /* IE9 Compat Modes */
  30. src: local('Source Sans Pro Light Italic'), local('SourceSansPro-LightIt'), url('../fonts/source-sans-pro-v9-latin-ext_latin-300italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  31. url('../fonts/source-sans-pro-v9-latin-ext_latin-300italic.woff2') format('woff2'), /* Super Modern Browsers */
  32. url('../fonts/source-sans-pro-v9-latin-ext_latin-300italic.woff') format('woff'), /* Modern Browsers */
  33. url('../fonts/source-sans-pro-v9-latin-ext_latin-300italic.ttf') format('truetype'), /* Safari, Android, iOS */
  34. url('../fonts/source-sans-pro-v9-latin-ext_latin-300italic.svg#SourceSansPro') format('svg'); /* Legacy iOS */
  35. }
  36. /* source-sans-pro-regular - latin-ext_latin */
  37. @font-face {
  38. font-family: 'Source Sans Pro';
  39. font-style: normal;
  40. font-weight: 400;
  41. src: url('../fonts/source-sans-pro-v9-latin-ext_latin-regular.eot'); /* IE9 Compat Modes */
  42. src: local('Source Sans Pro'), local('SourceSansPro-Regular'), url('../fonts/source-sans-pro-v9-latin-ext_latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  43. url('../fonts/source-sans-pro-v9-latin-ext_latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
  44. url('../fonts/source-sans-pro-v9-latin-ext_latin-regular.woff') format('woff'), /* Modern Browsers */
  45. url('../fonts/source-sans-pro-v9-latin-ext_latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
  46. url('../fonts/source-sans-pro-v9-latin-ext_latin-regular.svg#SourceSansPro') format('svg'); /* Legacy iOS */
  47. }
  48. /* source-sans-pro-italic - latin-ext_latin */
  49. @font-face {
  50. font-family: 'Source Sans Pro';
  51. font-style: italic;
  52. font-weight: 400;
  53. src: url('../fonts/source-sans-pro-v9-latin-ext_latin-italic.eot'); /* IE9 Compat Modes */
  54. src: local('Source Sans Pro Italic'), local('SourceSansPro-It'), url('../fonts/source-sans-pro-v9-latin-ext_latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  55. url('../fonts/source-sans-pro-v9-latin-ext_latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
  56. url('../fonts/source-sans-pro-v9-latin-ext_latin-italic.woff') format('woff'), /* Modern Browsers */
  57. url('../fonts/source-sans-pro-v9-latin-ext_latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
  58. url('../fonts/source-sans-pro-v9-latin-ext_latin-italic.svg#SourceSansPro') format('svg'); /* Legacy iOS */
  59. }
  60. /* source-sans-pro-600 - latin-ext_latin */
  61. @font-face {
  62. font-family: 'Source Sans Pro';
  63. font-style: normal;
  64. font-weight: 600;
  65. src: url('../fonts/source-sans-pro-v9-latin-ext_latin-600.eot'); /* IE9 Compat Modes */
  66. src: local('Source Sans Pro Semibold'), local('SourceSansPro-Semibold'), url('../fonts/source-sans-pro-v9-latin-ext_latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  67. url('../fonts/source-sans-pro-v9-latin-ext_latin-600.woff2') format('woff2'), /* Super Modern Browsers */
  68. url('../fonts/source-sans-pro-v9-latin-ext_latin-600.woff') format('woff'), /* Modern Browsers */
  69. url('../fonts/source-sans-pro-v9-latin-ext_latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
  70. url('../fonts/source-sans-pro-v9-latin-ext_latin-600.svg#SourceSansPro') format('svg'); /* Legacy iOS */
  71. }
  72. /* source-sans-pro-700 - latin-ext_latin */
  73. @font-face {
  74. font-family: 'Source Sans Pro';
  75. font-style: normal;
  76. font-weight: 700;
  77. src: url('../fonts/source-sans-pro-v9-latin-ext_latin-700.eot'); /* IE9 Compat Modes */
  78. src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url('../fonts/source-sans-pro-v9-latin-ext_latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  79. url('../fonts/source-sans-pro-v9-latin-ext_latin-700.woff2') format('woff2'), /* Super Modern Browsers */
  80. url('../fonts/source-sans-pro-v9-latin-ext_latin-700.woff') format('woff'), /* Modern Browsers */
  81. url('../fonts/source-sans-pro-v9-latin-ext_latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
  82. url('../fonts/source-sans-pro-v9-latin-ext_latin-700.svg#SourceSansPro') format('svg'); /* Legacy iOS */
  83. }
  84. /* source-sans-pro-900 - latin-ext_latin */
  85. @font-face {
  86. font-family: 'Source Sans Pro';
  87. font-style: normal;
  88. font-weight: 900;
  89. src: url('../fonts/source-sans-pro-v9-latin-ext_latin-900.eot'); /* IE9 Compat Modes */
  90. src: local('Source Sans Pro Black'), local('SourceSansPro-Black'), url('../fonts/source-sans-pro-v9-latin-ext_latin-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  91. url('../fonts/source-sans-pro-v9-latin-ext_latin-900.woff2') format('woff2'), /* Super Modern Browsers */
  92. url('../fonts/source-sans-pro-v9-latin-ext_latin-900.woff') format('woff'), /* Modern Browsers */
  93. url('../fonts/source-sans-pro-v9-latin-ext_latin-900.ttf') format('truetype'), /* Safari, Android, iOS */
  94. url('../fonts/source-sans-pro-v9-latin-ext_latin-900.svg#SourceSansPro') format('svg'); /* Legacy iOS */
  95. }
  96. /* #endregion */
  97. /* #region general tag css definitions */
  98. article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  99. display: block;
  100. }
  101. audio, canvas, video {
  102. display: inline-block;
  103. *display: inline;
  104. *zoom: 1;
  105. }
  106. audio:not([controls]) {
  107. display: none;
  108. }
  109. [hidden] {
  110. display: none;
  111. }
  112. a {
  113. text-decoration: none;
  114. }
  115. a .icon {
  116. display: inline-block;
  117. text-decoration: inherit;
  118. }
  119. a:hover, a:active {
  120. outline: 0;
  121. }
  122. a.headerlink {
  123. display: inline;
  124. text-decoration: none;
  125. visibility: hidden;
  126. font-size: smaller;
  127. margin-left: 3px;
  128. }
  129. abbr[title] {
  130. border-bottom: 1px dotted;
  131. }
  132. big, small {
  133. font-size: 100%;
  134. }
  135. blockquote {
  136. background: #f9f9f9;
  137. border-left: 10px solid #ccc;
  138. margin: 1.5em 10px;
  139. padding: 0.5em 10px;
  140. quotes: "\201C""\201D""\2018""\2019";
  141. }
  142. blockquote:before {
  143. color: #ccc;
  144. content: open-quote;
  145. font-size: 4em;
  146. line-height: 0.1em;
  147. margin-right: 10px;
  148. vertical-align: -0.4em;
  149. }
  150. blockquote p {
  151. display: inline;
  152. }
  153. body {
  154. font-weight: normal;
  155. min-height: 100%;
  156. overflow-x: hidden;
  157. margin: 0;
  158. -webkit-font-smoothing: antialiased;
  159. text-rendering: optimizeLegibility;
  160. -moz-osx-font-smoothing: grayscale;
  161. min-height: 100%;
  162. font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  163. font-size: 16px;
  164. }
  165. button, input {
  166. font-size: 100%;
  167. margin: 0;
  168. vertical-align: baseline;
  169. *vertical-align: middle;
  170. }
  171. button[disabled], input[disabled] {
  172. cursor: default;
  173. }
  174. button::-moz-focus-inner, input::-moz-focus-inner {
  175. border: 0;
  176. padding: 0;
  177. }
  178. button {
  179. font-size: 100%;
  180. margin: 0;
  181. vertical-align: baseline;
  182. *vertical-align: middle;
  183. cursor: pointer;
  184. line-height: normal;
  185. -webkit-appearance: button;
  186. *overflow: visible;
  187. }
  188. code, pre.nocode {
  189. white-space: pre;
  190. max-width: 100%;
  191. border: solid 1px;
  192. font-size: 90%;
  193. padding: 0 2px;
  194. margin: 0 3px;
  195. font-family: Consolas, "Andale Mono WT","Andale Mono","Lucida Sans Typewriter","DejaVu Sans Mono","Bitstream Vera Sans Mono","Liberation Mono","Nimbus Mono L",Monaco,"Courier New",Courier,monospace;
  196. overflow-x: auto;
  197. }
  198. code.code-large {
  199. font-size: 90%;
  200. }
  201. div.alert > pre > code {
  202. line-height: initial;
  203. }
  204. dfn {
  205. font-style: italic;
  206. }
  207. dl {
  208. margin-bottom: 24px;
  209. }
  210. dl dt {
  211. font-weight: bold;
  212. }
  213. dl p, dl table, dl ul, dl ol {
  214. margin-bottom: 12px !important;
  215. }
  216. dl dd {
  217. margin: 0 0 12px 35px;
  218. line-height: 24px;
  219. }
  220. dl:not(.docutils) {
  221. margin-bottom: 24px;
  222. }
  223. figure {
  224. margin: 0;
  225. }
  226. fieldset {
  227. border: 0;
  228. margin: 0;
  229. padding: 0;
  230. }
  231. footer p {
  232. margin-bottom: 12px;
  233. }
  234. form {
  235. margin: 0;
  236. }
  237. h1, h2, h3, h4, h5, h6 {
  238. margin-top: 0;
  239. font-weight: lighter;
  240. }
  241. h1 {
  242. font-size: 220%;
  243. margin-bottom:25px;
  244. }
  245. h2 {
  246. font-size: 190%;
  247. margin-bottom:18px;
  248. }
  249. h3 {
  250. font-size: 155%;
  251. margin-bottom:15px;
  252. }
  253. h4 {
  254. font-size: 130%;
  255. margin-bottom: 13px;
  256. }
  257. h4.searchresulttitle {
  258. margin-bottom: -5px;
  259. }
  260. h5 {
  261. font-size: 115%;
  262. margin-bottom: 10px;
  263. }
  264. h6 {
  265. font-size: 105%;
  266. margin-bottom: 7px;
  267. }
  268. h1:hover a.headerlink {
  269. visibility: visible;
  270. }
  271. h2:hover a.headerlink {
  272. visibility: visible;
  273. }
  274. h3:hover a.headerlink {
  275. visibility: visible;
  276. }
  277. h4:hover a.headerlink {
  278. visibility: visible;
  279. }
  280. h5:hover a.headerlink {
  281. visibility: visible;
  282. }
  283. h6:hover a.headerlink {
  284. visibility: visible;
  285. }
  286. hr {
  287. display: block;
  288. height: 1px;
  289. border: 0;
  290. border-top: 1px solid;
  291. margin: 24px 0;
  292. padding: 0;
  293. }
  294. html {
  295. font-size: 100%;
  296. -webkit-text-size-adjust: 100%;
  297. -ms-text-size-adjust: 100%;
  298. height: 100%;
  299. overflow-x: hidden;
  300. }
  301. img {
  302. border: 0;
  303. -ms-interpolation-mode: bicubic;
  304. vertical-align: middle;
  305. }
  306. input {
  307. line-height: normal;
  308. font-size: 100%;
  309. margin: 0;
  310. vertical-align: baseline;
  311. *vertical-align: middle;
  312. }
  313. input[type="text"] {
  314. -webkit-appearance: none;
  315. padding: 6px;
  316. display: inline-block;
  317. border: 1px solid;
  318. font-size: 80%;
  319. box-shadow: inset 0 1px 3px #ddd;
  320. border-radius: 0;
  321. -webkit-transition: border 0.3s linear;
  322. -moz-transition: border 0.3s linear;
  323. transition: border 0.3s linear;
  324. }
  325. /* For chrome, to avoid ugly bar around search box*/
  326. input:focus {
  327. outline: none;
  328. }
  329. ins {
  330. text-decoration: none;
  331. }
  332. label {
  333. cursor: pointer;
  334. display: block;
  335. margin: 0 0 0.3125em 0;
  336. font-size: 90%;
  337. }
  338. legend {
  339. margin-top: 0;
  340. font-weight: 700;
  341. border: 0;
  342. *margin-left: -7px;
  343. padding: 0;
  344. white-space: normal;
  345. display: block;
  346. width: 100%;
  347. margin-bottom: 24px;
  348. font-size: 150%;
  349. }
  350. li {
  351. line-height: 24px;
  352. }
  353. li pre {
  354. line-height: normal;
  355. }
  356. mark {
  357. font-style: italic;
  358. font-weight: bold;
  359. }
  360. nav.stickynav {
  361. position: fixed;
  362. top: 0;
  363. }
  364. p {
  365. line-height: 24px;
  366. margin: 0;
  367. margin-bottom: 24px;
  368. }
  369. p code {
  370. word-wrap: break-word;
  371. }
  372. pre {
  373. margin-bottom: 24px;
  374. }
  375. pre > code {
  376. font-size: 13px;
  377. box-shadow: 0px 0px 8px rgba(10,10,10,0.1);
  378. }
  379. pre.nocode {
  380. box-shadow: 0px 0px 8px rgba(10,10,10,0.1);
  381. margin-bottom: 20px;
  382. padding: 4px 4px;
  383. }
  384. q {
  385. quotes: none;
  386. }
  387. q:before, q:after {
  388. content: "";
  389. content: none;
  390. }
  391. small {
  392. font-size: 80%;
  393. }
  394. sub, sup {
  395. font-size: 75%;
  396. line-height: 0;
  397. position: relative;
  398. vertical-align: baseline;
  399. }
  400. sup {
  401. top: -0.5em;
  402. }
  403. sub {
  404. bottom: -0.25em;
  405. }
  406. svg:not(:root) {
  407. overflow: hidden;
  408. }
  409. table {
  410. border-collapse: collapse;
  411. border-spacing: 0;
  412. }
  413. textarea {
  414. overflow: auto;
  415. vertical-align: top;
  416. resize: vertical;
  417. }
  418. td {
  419. vertical-align: top;
  420. }
  421. /* #endregion*/
  422. /* #region general classes */
  423. .hidden {
  424. display: none !important;
  425. visibility: hidden;
  426. }
  427. img.shadowed, div.figure img {
  428. margin: 0 auto;
  429. box-shadow: 0px 0px 8px rgba(10,10,10,0.2)
  430. }
  431. div.figure p {
  432. font-size: smaller;
  433. }
  434. .float-left {
  435. float: left;
  436. }
  437. .float-right {
  438. float: right;
  439. }
  440. .footnotes {
  441. font-size:smaller;
  442. }
  443. .full-width {
  444. width: 100%;
  445. }
  446. .no-highlight {
  447. display: block;
  448. padding: 0.5em;
  449. }
  450. .relative {
  451. position: relative;
  452. }
  453. .text-left {
  454. text-align: left;
  455. }
  456. .text-center {
  457. text-align: center;
  458. }
  459. .text-right {
  460. text-align: right;
  461. }
  462. .text-large {
  463. font-size: 120%;
  464. }
  465. .text-normal {
  466. font-size: 100%;
  467. }
  468. .text-small {
  469. font-size: 80%;
  470. }
  471. .text-strike {
  472. text-decoration: line-through;
  473. }
  474. .toc-footer {
  475. align-items: center;
  476. text-align: center;
  477. }
  478. .toc-footer hr {
  479. width: 100%;
  480. display: block;
  481. height: 1px;
  482. border: 0;
  483. border-top: 1px solid;
  484. margin-left: auto;
  485. margin-right: auto;
  486. padding-bottom: 0;
  487. margin-bottom: 5px;
  488. }
  489. /* #endregion */
  490. /* #region Alert boxes*/
  491. .alert {
  492. padding: 12px;
  493. line-height: 24px;
  494. margin-bottom: 24px;
  495. box-shadow: 0px 0px 8px rgba(10,10,10,0.1);
  496. }
  497. .alert-title {
  498. font-weight: bold;
  499. display: block;
  500. margin: -12px;
  501. padding: 6px 12px;
  502. margin-bottom: 12px;
  503. }
  504. .alert p:last-child {
  505. margin-bottom: 0;
  506. }
  507. /* #endregion*/
  508. /* #region Tables*/
  509. .table {
  510. border-collapse: collapse;
  511. border-spacing: 0;
  512. empty-cells: show;
  513. margin-bottom: 24px;
  514. }
  515. .table caption {
  516. font-size: 85%;
  517. font-style: italic;
  518. padding: 1em 0;
  519. text-align: center;
  520. }
  521. .table td, .table th {
  522. font-size: 90%;
  523. margin: 0;
  524. overflow: visible;
  525. padding: 8px 16px;
  526. }
  527. .table td:first-child, .table th:first-child {
  528. border-left-width: 0;
  529. }
  530. .table thead {
  531. text-align: left;
  532. vertical-align: bottom;
  533. white-space: nowrap;
  534. }
  535. .table thead th {
  536. font-weight: bold;
  537. border-bottom: solid 2px;
  538. }
  539. .table td {
  540. background-color: transparent;
  541. }
  542. .table td p {
  543. line-height: 18px;
  544. }
  545. .table td p:last-child {
  546. margin-bottom: 0;
  547. }
  548. .table .table-cell-min {
  549. width: 1%;
  550. padding-right: 0;
  551. }
  552. .table-secondary {
  553. font-size: 90%;
  554. }
  555. .table-tertiary {
  556. font-size: 80%;
  557. }
  558. .table-bordered-all {
  559. border: 1px solid;
  560. box-shadow: 0px 0px 8px rgba(10,10,10,0.1);
  561. }
  562. .table-bordered-all td {
  563. border-bottom: 1px solid;
  564. border-left: 1px solid;
  565. }
  566. .table-bordered-all tbody > tr:last-child td {
  567. border-bottom-width: 0;
  568. }
  569. .table-bordered {
  570. border: 1px solid;
  571. }
  572. .table-bordered-rows td {
  573. border-bottom: 1px solid;
  574. }
  575. .table-bordered-rows tbody > tr:last-child td {
  576. border-bottom-width: 0;
  577. }
  578. .table-horizontal tbody > tr:last-child td {
  579. border-bottom-width: 0;
  580. }
  581. .table-horizontal td, .table-horizontal th {
  582. border-width: 0 0 1px 0;
  583. border-bottom: 1px solid;
  584. }
  585. .table-horizontal tbody > tr:last-child td {
  586. border-bottom-width: 0;
  587. }
  588. .table-responsive {
  589. margin-bottom: 24px;
  590. max-width: 100%;
  591. overflow: auto;
  592. }
  593. .table-responsive table {
  594. margin-bottom: 0 !important;
  595. }
  596. .table-responsive table td, .table-responsive table th {
  597. white-space: nowrap;
  598. }
  599. /* #endregion*/
  600. /* #region Tabs*/
  601. /* Tab CSS by Joseph Fusco. http://codepen.io/fusco/pen/Wvzjrm, slightly adjusted to fit our style/theme. */
  602. .tab-wrap {
  603. -webkit-transition: 0.2s box-shadow ease;
  604. transition: 0.2s box-shadow ease;
  605. max-width: 100%;
  606. display: -webkit-box;
  607. display: -webkit-flex;
  608. display: -ms-flexbox;
  609. display: flex;
  610. -webkit-flex-wrap: wrap;
  611. -ms-flex-wrap: wrap;
  612. flex-wrap: wrap;
  613. position: relative;
  614. list-style: none;
  615. margin: 30px 0;
  616. box-shadow: 0px 0px 8px rgba(10,10,10,0.1);
  617. }
  618. .tab-wrap:hover {
  619. box-shadow: 0 2px 5px rgba(0, 0, 0, 0.23), 0 2px 5px rgba(0, 0, 0, 0.19);
  620. }
  621. .tab {
  622. display: none;
  623. }
  624. .tab:checked:nth-of-type(1) ~ .tab-content:nth-of-type(1) {
  625. opacity: 1;
  626. -webkit-transition: 0.1s opacity ease-in, 0.1s -webkit-transform ease;
  627. transition: 0.1s opacity ease-in, 0.1s transform ease;
  628. position: relative;
  629. top: 0;
  630. z-index: 100;
  631. -webkit-transform: translateY(0px);
  632. -ms-transform: translateY(0px);
  633. transform: translateY(0px);
  634. }
  635. .tab:checked:nth-of-type(2) ~ .tab-content:nth-of-type(2) {
  636. opacity: 1;
  637. -webkit-transition: 0.1s opacity ease-in, 0.1s -webkit-transform ease;
  638. transition: 0.1s opacity ease-in, 0.1s transform ease;
  639. position: relative;
  640. top: 0;
  641. z-index: 100;
  642. -webkit-transform: translateY(0px);
  643. -ms-transform: translateY(0px);
  644. transform: translateY(0px);
  645. }
  646. .tab:checked:nth-of-type(3) ~ .tab-content:nth-of-type(3) {
  647. opacity: 1;
  648. -webkit-transition: 0.1s opacity ease-in, 0.1s -webkit-transform ease;
  649. transition: 0.1s opacity ease-in, 0.1s transform ease;
  650. position: relative;
  651. top: 0;
  652. z-index: 100;
  653. -webkit-transform: translateY(0px);
  654. -ms-transform: translateY(0px);
  655. transform: translateY(0px);
  656. }
  657. .tab:checked:nth-of-type(4) ~ .tab-content:nth-of-type(4) {
  658. opacity: 1;
  659. -webkit-transition: 0.1s opacity ease-in, 0.1s -webkit-transform ease;
  660. transition: 0.1s opacity ease-in, 0.1s transform ease;
  661. position: relative;
  662. top: 0;
  663. z-index: 100;
  664. -webkit-transform: translateY(0px);
  665. -ms-transform: translateY(0px);
  666. transform: translateY(0px);
  667. }
  668. .tab:checked:nth-of-type(5) ~ .tab-content:nth-of-type(5) {
  669. opacity: 1;
  670. -webkit-transition: 0.1s opacity ease-in, 0.1s -webkit-transform ease;
  671. transition: 0.1s opacity ease-in, 0.1s transform ease;
  672. position: relative;
  673. top: 0;
  674. z-index: 100;
  675. -webkit-transform: translateY(0px);
  676. -ms-transform: translateY(0px);
  677. transform: translateY(0px);
  678. }
  679. .tab:checked:nth-of-type(6) ~ .tab-content:nth-of-type(6) {
  680. opacity: 1;
  681. -webkit-transition: 0.1s opacity ease-in, 0.1s -webkit-transform ease;
  682. transition: 0.1s opacity ease-in, 0.1s transform ease;
  683. position: relative;
  684. top: 0;
  685. z-index: 100;
  686. -webkit-transform: translateY(0px);
  687. -ms-transform: translateY(0px);
  688. transform: translateY(0px);
  689. }
  690. .tab:checked:nth-of-type(7) ~ .tab-content:nth-of-type(7) {
  691. opacity: 1;
  692. -webkit-transition: 0.1s opacity ease-in, 0.1s -webkit-transform ease;
  693. transition: 0.1s opacity ease-in, 0.1s transform ease;
  694. position: relative;
  695. top: 0;
  696. z-index: 100;
  697. -webkit-transform: translateY(0px);
  698. -ms-transform: translateY(0px);
  699. transform: translateY(0px);
  700. }
  701. .tab:checked:nth-of-type(8) ~ .tab-content:nth-of-type(8) {
  702. opacity: 1;
  703. -webkit-transition: 0.1s opacity ease-in, 0.1s -webkit-transform ease;
  704. transition: 0.1s opacity ease-in, 0.1s transform ease;
  705. position: relative;
  706. top: 0;
  707. z-index: 100;
  708. -webkit-transform: translateY(0px);
  709. -ms-transform: translateY(0px);
  710. transform: translateY(0px);
  711. }
  712. /*
  713. If you need more tabs (oh dear why would you!?) copy/paste the checked section above and increase the number, each tab has its own section
  714. as this is a js less tab system.
  715. */
  716. .tab:first-of-type:not(:last-of-type) + label {
  717. border-top-right-radius: 0;
  718. border-bottom-right-radius: 0;
  719. }
  720. .tab:not(:first-of-type):not(:last-of-type) + label {
  721. border-radius: 0;
  722. }
  723. .tab:last-of-type:not(:first-of-type) + label {
  724. border-top-left-radius: 0;
  725. border-bottom-left-radius: 0;
  726. }
  727. .tab:checked + label {
  728. box-shadow: 0 -1px 0 #fff inset;
  729. cursor: default;
  730. }
  731. .tab:checked + label:hover {
  732. box-shadow: 0 -1px 0 #fff inset;
  733. }
  734. .tab + label {
  735. box-shadow: 0 -1px 0 #eee inset;
  736. cursor: pointer;
  737. display: block;
  738. text-decoration: none;
  739. -webkit-box-flex: 3;
  740. -webkit-flex-grow: 3;
  741. -ms-flex-positive: 3;
  742. flex-grow: 3;
  743. text-align: center;
  744. -webkit-user-select: none;
  745. -moz-user-select: none;
  746. -ms-user-select: none;
  747. user-select: none;
  748. text-align: center;
  749. -webkit-transition: 0.3s background-color ease, 0.3s box-shadow ease;
  750. transition: 0.3s background-color ease, 0.3s box-shadow ease;
  751. height: 40px;
  752. box-sizing: border-box;
  753. padding: 10px;
  754. }
  755. .tab + label:hover {
  756. box-shadow: 0 1px 0 #f4f4f4 inset;
  757. }
  758. .tab-content {
  759. padding: 10px 15px;
  760. background-color: transparent;
  761. position: absolute;
  762. width: 100%;
  763. z-index: -1;
  764. opacity: 0;
  765. left: 0;
  766. -webkit-transform: translateY(-3px);
  767. -ms-transform: translateY(-3px);
  768. transform: translateY(-3px);
  769. }
  770. .tab-content > p:last-child {
  771. margin-bottom:0;
  772. }
  773. .tab-content > pre {
  774. margin-top: -12px;
  775. margin-left: -15px;
  776. margin-right: -15px;
  777. margin-bottom: -8px;
  778. }
  779. .tab-content > pre > code {
  780. box-shadow: initial;
  781. border: 0;
  782. }
  783. /* #endregion*/
  784. /* #region Breadcrumbs*/
  785. .breadcrumbs ul {
  786. margin: 0;
  787. padding-left: 0;
  788. list-style: none;
  789. list-style-image: none;
  790. }
  791. .breadcrumbs li {
  792. display: inline-block;
  793. }
  794. .breadcrumbs li.breadcrumbs-aside {
  795. float: right;
  796. }
  797. .breadcrumbs li a {
  798. display: inline-block;
  799. }
  800. .breadcrumbs li a:first-child {
  801. padding-left: 0;
  802. }
  803. .breadcrumbs-extra {
  804. margin-bottom: 0;
  805. font-size: 80%;
  806. display: inline-block;
  807. }
  808. /* #endregion*/
  809. /* #region Navigation */
  810. .affix {
  811. position: fixed;
  812. top: 1.618em;
  813. }
  814. .grid-for-nav {
  815. position: absolute;
  816. width: 100%;
  817. height: 100%;
  818. }
  819. .menu a:hover {
  820. text-decoration: none;
  821. }
  822. .menu-vertical header {
  823. height: 32px;
  824. display: inline-block;
  825. line-height: 32px;
  826. padding: 0 1.618em;
  827. display: block;
  828. font-weight: bold;
  829. text-transform: uppercase;
  830. font-size: 80%;
  831. white-space: nowrap;
  832. }
  833. .menu-vertical ul {
  834. margin: 0;
  835. padding: 0;
  836. list-style: none;
  837. list-style-image: none;
  838. }
  839. .menu-vertical ul.tocroot {
  840. padding-left: 15px;
  841. }
  842. .menu-vertical ul.currentrelative {
  843. margin-left: -15px;
  844. margin-bottom: -4px;
  845. padding-bottom: 4px;
  846. padding-left: 15px;
  847. }
  848. .menu-vertical ul.currentrelativeroot {
  849. margin-left: -15px;
  850. margin-bottom: -4px;
  851. padding-bottom: 4px;
  852. padding-left: 15px;
  853. }
  854. .menu-vertical ul.tocroot > li.current {
  855. margin-left: -4px;
  856. padding-left: 4px;
  857. padding-bottom: 3px;
  858. margin-bottom: 10px;
  859. }
  860. .menu-vertical ul.current {
  861. padding-left: 10px;
  862. margin-left: -10px;
  863. padding-bottom: 3px;
  864. }
  865. .menu-vertical li {
  866. list-style: none;
  867. line-height: 16px;
  868. }
  869. .menu-vertical li.tocentry {
  870. padding-left: 20px;
  871. padding-top: 7px;
  872. }
  873. .menu-vertical li.tocentry.current > ul.currentrelative {
  874. padding-left: 7px;
  875. padding-bottom: 5px;
  876. margin-top: 0;
  877. }
  878. .menu-vertical li.tocentry > ul.currentrelative {
  879. padding-left: 7px;
  880. padding-bottom: 5px;
  881. margin-top: -3px;
  882. }
  883. .menu-vertical li.tocentry > ul.currentrelative > li.tocentry {
  884. padding-top: 3px !important;
  885. }
  886. .menu-vertical li.tocrootentry {
  887. padding-left: 15px;
  888. }
  889. .menu-vertical li.current {
  890. margin-top: 7px;
  891. margin-bottom: 3px;
  892. margin-left: 0;
  893. padding-top: 0px;
  894. }
  895. .menu-vertical li.current > a {
  896. font-weight: bold;
  897. border: none;
  898. }
  899. .menu-vertical a {
  900. position: relative;
  901. border: none;
  902. }
  903. .menu-vertical a:hover {
  904. cursor: pointer;
  905. }
  906. .menu-vertical a:hover, .menu-vertical li.current a:hover, .menu-vertical li.on a:hover, .menu-vertical li.current > a:hover {
  907. text-decoration: underline;
  908. }
  909. .menu-vertical a:active {
  910. cursor: pointer;
  911. }
  912. .menu-vertical span.navigationgroup {
  913. font-weight: bold;
  914. margin-bottom: 3px;
  915. }
  916. .nav-side {
  917. position: absolute;
  918. top: 0;
  919. left: 0;
  920. width: 320px;
  921. overflow: hidden;
  922. min-height: 100%;
  923. z-index: 200;
  924. height: 100%;
  925. overflow-y: auto;
  926. font-size: 14px;
  927. }
  928. .nav-top {
  929. display: none;
  930. padding: 0.4045em 0.809em;
  931. position: relative;
  932. line-height: 50px;
  933. text-align: center;
  934. font-size: 100%;
  935. *zoom: 1;
  936. }
  937. .nav-top:before, .nav-top:after {
  938. display: table;
  939. content: "";
  940. }
  941. .nav-top:after {
  942. clear: both;
  943. }
  944. .nav-top a {
  945. font-weight: bold;
  946. }
  947. .nav-top img {
  948. margin-right: 12px;
  949. height: 45px;
  950. width: 45px;
  951. padding: 5px;
  952. border-radius: 100%;
  953. }
  954. .nav-top i {
  955. font-size: 30px;
  956. float: left;
  957. cursor: pointer;
  958. }
  959. .nav-content-wrap {
  960. margin-left: 320px;
  961. min-height: 100%;
  962. }
  963. .nav-content {
  964. padding: 1.618em 3.236em;
  965. height: 100%;
  966. max-width: 800px;
  967. }
  968. .side-nav-search {
  969. z-index: 200;
  970. text-align: center;
  971. padding: 0.809em;
  972. display: block;
  973. margin-bottom: 0.809em;
  974. }
  975. .side-nav-search input[type=text] {
  976. width: 100%;
  977. border-radius: 50px;
  978. padding: 6px 12px;
  979. }
  980. .side-nav-search img {
  981. display: block;
  982. margin: auto auto 0.809em auto;
  983. height: 45px;
  984. width: 45px;
  985. padding: 5px;
  986. border-radius: 100%;
  987. }
  988. .side-nav-search > a, .side-nav-search .dropdown > a {
  989. font-size: 100%;
  990. font-weight: bold;
  991. display: inline-block;
  992. padding: 4px 6px;
  993. margin-bottom: 0.809em;
  994. }
  995. /* #endregion*/
  996. /* #region media queries*/
  997. @media print {
  998. html, body, section {
  999. background: none !important;
  1000. }
  1001. * {
  1002. box-shadow: none !important;
  1003. text-shadow: none !important;
  1004. filter: none !important;
  1005. -ms-filter: none !important;
  1006. }
  1007. a, a:visited {
  1008. text-decoration: underline;
  1009. }
  1010. footer, .nav-side {
  1011. display: none;
  1012. }
  1013. .nav-content-wrap {
  1014. margin-left: 0;
  1015. }
  1016. img {
  1017. max-width: 100% !important;
  1018. }
  1019. h2, h3 {
  1020. page-break-after: avoid;
  1021. }
  1022. pre, blockquote {
  1023. page-break-inside: avoid;
  1024. }
  1025. thead {
  1026. display: table-header-group;
  1027. }
  1028. tr, img {
  1029. page-break-inside: avoid;
  1030. }
  1031. p, h2, h3 {
  1032. orphans: 3;
  1033. widows: 3;
  1034. }
  1035. .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
  1036. content: "";
  1037. }
  1038. @page {
  1039. margin: 0.5cm;
  1040. }
  1041. .breadcrumbs li.breadcrumbs-aside {
  1042. display: none;
  1043. }
  1044. }
  1045. @media only screen and (max-width: 480px) {
  1046. img {
  1047. max-width: 100%;
  1048. height:auto;
  1049. }
  1050. .form input[type="text"] {
  1051. margin-bottom: 0.3em;
  1052. display: block;
  1053. }
  1054. .form label {
  1055. margin-bottom: 0.3em;
  1056. display: block;
  1057. }
  1058. }
  1059. @media screen and (max-width: 480px) {
  1060. img {
  1061. max-width: 100%;
  1062. height:auto;
  1063. }
  1064. .mobile-hide {
  1065. display: none;
  1066. }
  1067. .breadcrumbs-extra {
  1068. display: none;
  1069. }
  1070. .breadcrumbs li.breadcrumbs-aside {
  1071. display: none;
  1072. }
  1073. }
  1074. @media screen and (max-width: 768px) {
  1075. img {
  1076. max-width: 100%;
  1077. height:auto;
  1078. }
  1079. .nav-top {
  1080. display: block;
  1081. }
  1082. .nav-side {
  1083. left: -320px;
  1084. }
  1085. .nav-side.shift {
  1086. width: 85%;
  1087. left: 0;
  1088. }
  1089. .nav-content-wrap {
  1090. margin-left: 0;
  1091. }
  1092. .nav-content-wrap .nav-content {
  1093. padding: 1.618em;
  1094. }
  1095. .nav-content-wrap.shift {
  1096. position: fixed;
  1097. min-width: 100%;
  1098. left: 85%;
  1099. top: 0;
  1100. height: 100%;
  1101. overflow: hidden;
  1102. }
  1103. .tablet-hide {
  1104. display: none;
  1105. }
  1106. }
  1107. @media screen and (min-width: 1400px) {
  1108. .nav-content {
  1109. margin: 0;
  1110. max-width: 1000px;
  1111. }
  1112. }
  1113. /* #endregion */
  1114. /* #region Search results */
  1115. #search-results .search li {
  1116. margin-bottom: 24px;
  1117. border-bottom: solid 1px;
  1118. padding-bottom: 24px;
  1119. }
  1120. #search-results .search li:first-child {
  1121. border-top: solid 1px;
  1122. padding-top: 24px;
  1123. }
  1124. #search-results .search li a {
  1125. font-size: 120%;
  1126. margin-bottom: 12px;
  1127. display: inline-block;
  1128. }
  1129. #search-results .context {
  1130. color: gray;
  1131. font-size: 90%;
  1132. }
  1133. #search-results article h3 {
  1134. margin-top: 23px;
  1135. border-top: 1px solid;
  1136. padding-top: 24px;
  1137. }
  1138. #search-results article:first-child h3 {
  1139. border-top: none;
  1140. }
  1141. #search-query {
  1142. width: 100%;
  1143. border-radius: 50px;
  1144. padding: 6px 12px;
  1145. }
  1146. /* #endregion */