org.css 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805
  1. @media all
  2. {
  3. body {
  4. font-size: 11pt;
  5. text-align: left;
  6. line-height:1.2em;
  7. }
  8. h1 {font-size: 14pt;}
  9. #table-of-contents {
  10. font-size: 85%;
  11. line-height: 1.4em;
  12. }
  13. #table-of-contents ul {
  14. list-style: none;
  15. margin: 7px 0px 7px 15px ;
  16. padding: 0px;
  17. }
  18. .title {
  19. padding-bottom: 7px;
  20. margin-bottom: 20px;
  21. border-bottom: 1px solid #222;
  22. }
  23. h2 {
  24. font-size: 12pt;
  25. padding-bottom: 4px;
  26. margin-top: 5px;
  27. margin-bottom: 5px;
  28. border-bottom: 1px solid #DDD;
  29. }
  30. h3 {font-size: 11pt; color: #a34d32;}
  31. h4 {font-size: 9pt;}
  32. a {text-decoration: none; color: #537d7b}
  33. /* a:visited {text-decoration: none; color: #224444} */ /* Taken out because color too similar to text. */
  34. a:visited {text-decoration: none; color: #98855b} /* this is now the color of the Unicorns horn */
  35. a:hover {text-decoration: underline; color: #a34d32}
  36. .todo {color: #990000;}
  37. .done {color: #006666;}
  38. .timestamp-kwd {color: #444;}
  39. .tag {color: #DDD; font-size: 70%; font-weight: 500;}
  40. table {border: none;}
  41. td {border: none; padding: .1em .7em .1em .3em;}
  42. th {border: none;}
  43. code {font-size: 10pt;}
  44. pre {
  45. border: 1px solid #555;
  46. background: #EEEEEE;
  47. font-size: 9pt;
  48. padding: 1em;
  49. }
  50. img {
  51. border: none;
  52. }
  53. .share img {
  54. opacity: .4;
  55. -moz-opacity: .4;
  56. filter: alpha(opacity=40);
  57. }
  58. .share img:hover {
  59. opacity: 1;
  60. -moz-opacity: 1;
  61. filter: alpha(opacity=100);
  62. }
  63. .org-info-search-highlight
  64. {
  65. background-color:#adefef; /* same color as emacs default */
  66. color:#000000;
  67. font-weight:bold;
  68. }
  69. .org-bbdb-company {
  70. /* bbdb-company */
  71. font-style: italic;
  72. }
  73. .org-bbdb-field-name {
  74. }
  75. .org-bbdb-field-value {
  76. }
  77. .org-bbdb-name {
  78. /* bbdb-name */
  79. text-decoration: underline;
  80. }
  81. .org-bold {
  82. /* bold */
  83. font-weight: bold;
  84. }
  85. .org-bold-italic {
  86. /* bold-italic */
  87. font-weight: bold;
  88. font-style: italic;
  89. }
  90. .org-border {
  91. /* border */
  92. background-color: #000000;
  93. }
  94. .org-buffer-menu-buffer {
  95. /* buffer-menu-buffer */
  96. font-weight: bold;
  97. }
  98. .org-builtin {
  99. /* font-lock-builtin-face */
  100. color: #da70d6;
  101. }
  102. .org-button {
  103. /* button */
  104. text-decoration: underline;
  105. }
  106. .org-c-nonbreakable-space {
  107. /* c-nonbreakable-space-face */
  108. background-color: #ff0000;
  109. font-weight: bold;
  110. }
  111. .org-calendar-today {
  112. /* calendar-today */
  113. text-decoration: underline;
  114. }
  115. .org-comment {
  116. /* font-lock-comment-face */
  117. color: #b22222;
  118. }
  119. .org-comment-delimiter {
  120. /* font-lock-comment-delimiter-face */
  121. color: #b22222;
  122. }
  123. .org-constant {
  124. /* font-lock-constant-face */
  125. color: #5f9ea0;
  126. }
  127. .org-cursor {
  128. /* cursor */
  129. background-color: #000000;
  130. }
  131. .org-default {
  132. /* default */
  133. color: #000000;
  134. background-color: #ffffff;
  135. }
  136. .org-diary {
  137. /* diary */
  138. color: #ff0000;
  139. }
  140. .org-doc {
  141. /* font-lock-doc-face */
  142. color: #bc8f8f;
  143. }
  144. .org-escape-glyph {
  145. /* escape-glyph */
  146. color: #a52a2a;
  147. }
  148. .org-file-name-shadow {
  149. /* file-name-shadow */
  150. color: #7f7f7f;
  151. }
  152. .org-fixed-pitch {
  153. }
  154. .org-fringe {
  155. /* fringe */
  156. background-color: #f2f2f2;
  157. }
  158. .org-function-name {
  159. /* font-lock-function-name-face */
  160. color: #0000ff;
  161. }
  162. .org-header-line {
  163. /* header-line */
  164. color: #333333;
  165. background-color: #e5e5e5;
  166. }
  167. .org-help-argument-name {
  168. /* help-argument-name */
  169. font-style: italic;
  170. }
  171. .org-highlight {
  172. /* highlight */
  173. background-color: #b4eeb4;
  174. }
  175. .org-holiday {
  176. /* holiday */
  177. background-color: #ffc0cb;
  178. }
  179. .org-info-header-node {
  180. /* info-header-node */
  181. color: #a52a2a;
  182. font-weight: bold;
  183. font-style: italic;
  184. }
  185. .org-info-header-xref {
  186. /* info-header-xref */
  187. color: #0000ff;
  188. text-decoration: underline;
  189. }
  190. .org-info-menu-header {
  191. /* info-menu-header */
  192. font-weight: bold;
  193. }
  194. .org-info-menu-star {
  195. /* info-menu-star */
  196. color: #ff0000;
  197. }
  198. .org-info-node {
  199. /* info-node */
  200. color: #a52a2a;
  201. font-weight: bold;
  202. font-style: italic;
  203. }
  204. .org-info-title-1 {
  205. /* info-title-1 */
  206. font-size: 172%;
  207. font-weight: bold;
  208. }
  209. .org-info-title-2 {
  210. /* info-title-2 */
  211. font-size: 144%;
  212. font-weight: bold;
  213. }
  214. .org-info-title-3 {
  215. /* info-title-3 */
  216. font-size: 120%;
  217. font-weight: bold;
  218. }
  219. .org-info-title-4 {
  220. /* info-title-4 */
  221. font-weight: bold;
  222. }
  223. .org-info-xref {
  224. /* info-xref */
  225. color: #0000ff;
  226. text-decoration: underline;
  227. }
  228. .org-isearch {
  229. /* isearch */
  230. color: #b0e2ff;
  231. background-color: #cd00cd;
  232. }
  233. .org-italic {
  234. /* italic */
  235. font-style: italic;
  236. }
  237. .org-keyword {
  238. /* font-lock-keyword-face */
  239. color: #a020f0;
  240. }
  241. .org-lazy-highlight {
  242. /* lazy-highlight */
  243. background-color: #afeeee;
  244. }
  245. .org-link {
  246. /* link */
  247. color: #0000ff;
  248. text-decoration: underline;
  249. }
  250. .org-link-visited {
  251. /* link-visited */
  252. color: #8b008b;
  253. text-decoration: underline;
  254. }
  255. .org-match {
  256. /* match */
  257. background-color: #ffff00;
  258. }
  259. .org-menu {
  260. }
  261. .org-message-cited-text {
  262. /* message-cited-text */
  263. color: #ff0000;
  264. }
  265. .org-message-header-cc {
  266. /* message-header-cc */
  267. color: #191970;
  268. }
  269. .org-message-header-name {
  270. /* message-header-name */
  271. color: #6495ed;
  272. }
  273. .org-message-header-newsgroups {
  274. /* message-header-newsgroups */
  275. color: #00008b;
  276. font-weight: bold;
  277. font-style: italic;
  278. }
  279. .org-message-header-other {
  280. /* message-header-other */
  281. color: #4682b4;
  282. }
  283. .org-message-header-subject {
  284. /* message-header-subject */
  285. color: #000080;
  286. font-weight: bold;
  287. }
  288. .org-message-header-to {
  289. /* message-header-to */
  290. color: #191970;
  291. font-weight: bold;
  292. }
  293. .org-message-header-xheader {
  294. /* message-header-xheader */
  295. color: #0000ff;
  296. }
  297. .org-message-mml {
  298. /* message-mml */
  299. color: #228b22;
  300. }
  301. .org-message-separator {
  302. /* message-separator */
  303. color: #a52a2a;
  304. }
  305. .org-minibuffer-prompt {
  306. /* minibuffer-prompt */
  307. color: #0000cd;
  308. }
  309. .org-mm-uu-extract {
  310. /* mm-uu-extract */
  311. color: #006400;
  312. background-color: #ffffe0;
  313. }
  314. .org-mode-line {
  315. /* mode-line */
  316. color: #000000;
  317. background-color: #bfbfbf;
  318. }
  319. .org-mode-line-buffer-id {
  320. /* mode-line-buffer-id */
  321. font-weight: bold;
  322. }
  323. .org-mode-line-highlight {
  324. }
  325. .org-mode-line-inactive {
  326. /* mode-line-inactive */
  327. color: #333333;
  328. background-color: #e5e5e5;
  329. }
  330. .org-mouse {
  331. /* mouse */
  332. background-color: #000000;
  333. }
  334. .org-negation-char {
  335. }
  336. .org-next-error {
  337. /* next-error */
  338. background-color: #eedc82;
  339. }
  340. .org-nobreak-space {
  341. /* nobreak-space */
  342. color: #a52a2a;
  343. text-decoration: underline;
  344. }
  345. .org-org-agenda-date {
  346. /* org-agenda-date */
  347. color: #0000ff;
  348. }
  349. .org-org-agenda-date-weekend {
  350. /* org-agenda-date-weekend */
  351. color: #0000ff;
  352. font-weight: bold;
  353. }
  354. .org-org-agenda-restriction-lock {
  355. /* org-agenda-restriction-lock */
  356. background-color: #ffff00;
  357. }
  358. .org-org-agenda-structure {
  359. /* org-agenda-structure */
  360. color: #0000ff;
  361. }
  362. .org-org-archived {
  363. /* org-archived */
  364. color: #7f7f7f;
  365. }
  366. .org-org-code {
  367. /* org-code */
  368. color: #7f7f7f;
  369. }
  370. .org-org-column {
  371. /* org-column */
  372. background-color: #e5e5e5;
  373. }
  374. .org-org-column-title {
  375. /* org-column-title */
  376. background-color: #e5e5e5;
  377. font-weight: bold;
  378. text-decoration: underline;
  379. }
  380. .org-org-date {
  381. /* org-date */
  382. color: #a020f0;
  383. text-decoration: underline;
  384. }
  385. .org-org-done {
  386. /* org-done */
  387. color: #228b22;
  388. font-weight: bold;
  389. }
  390. .org-org-drawer {
  391. /* org-drawer */
  392. color: #0000ff;
  393. }
  394. .org-org-ellipsis {
  395. /* org-ellipsis */
  396. color: #b8860b;
  397. text-decoration: underline;
  398. }
  399. .org-org-formula {
  400. /* org-formula */
  401. color: #b22222;
  402. }
  403. .org-org-headline-done {
  404. /* org-headline-done */
  405. color: #bc8f8f;
  406. }
  407. .org-org-hide {
  408. /* org-hide */
  409. color: #e5e5e5;
  410. }
  411. .org-org-latex-and-export-specials {
  412. /* org-latex-and-export-specials */
  413. color: #8b4513;
  414. }
  415. .org-org-level-1 {
  416. /* org-level-1 */
  417. color: #0000ff;
  418. }
  419. .org-org-level-2 {
  420. /* org-level-2 */
  421. color: #b8860b;
  422. }
  423. .org-org-level-3 {
  424. /* org-level-3 */
  425. color: #a020f0;
  426. }
  427. .org-org-level-4 {
  428. /* org-level-4 */
  429. color: #b22222;
  430. }
  431. .org-org-level-5 {
  432. /* org-level-5 */
  433. color: #228b22;
  434. }
  435. .org-org-level-6 {
  436. /* org-level-6 */
  437. color: #5f9ea0;
  438. }
  439. .org-org-level-7 {
  440. /* org-level-7 */
  441. color: #da70d6;
  442. }
  443. .org-org-level-8 {
  444. /* org-level-8 */
  445. color: #bc8f8f;
  446. }
  447. .org-org-link {
  448. /* org-link */
  449. color: #a020f0;
  450. text-decoration: underline;
  451. }
  452. .org-org-property-value {
  453. }
  454. .org-org-scheduled-previously {
  455. /* org-scheduled-previously */
  456. color: #b22222;
  457. }
  458. .org-org-scheduled-today {
  459. /* org-scheduled-today */
  460. color: #006400;
  461. }
  462. .org-org-sexp-date {
  463. /* org-sexp-date */
  464. color: #a020f0;
  465. }
  466. .org-org-special-keyword {
  467. /* org-special-keyword */
  468. color: #bc8f8f;
  469. }
  470. .org-org-table {
  471. /* org-table */
  472. color: #0000ff;
  473. }
  474. .org-org-tag {
  475. /* org-tag */
  476. font-weight: bold;
  477. }
  478. .org-org-target {
  479. /* org-target */
  480. text-decoration: underline;
  481. }
  482. .org-org-time-grid {
  483. /* org-time-grid */
  484. color: #b8860b;
  485. }
  486. .org-org-todo {
  487. /* org-todo */
  488. color: #ff0000;
  489. }
  490. .org-org-upcoming-deadline {
  491. /* org-upcoming-deadline */
  492. color: #b22222;
  493. }
  494. .org-org-verbatim {
  495. /* org-verbatim */
  496. color: #7f7f7f;
  497. text-decoration: underline;
  498. }
  499. .org-org-warning {
  500. /* org-warning */
  501. color: #ff0000;
  502. font-weight: bold;
  503. }
  504. .org-outline-1 {
  505. /* outline-1 */
  506. color: #0000ff;
  507. }
  508. .org-outline-2 {
  509. /* outline-2 */
  510. color: #b8860b;
  511. }
  512. .org-outline-3 {
  513. /* outline-3 */
  514. color: #a020f0;
  515. }
  516. .org-outline-4 {
  517. /* outline-4 */
  518. color: #b22222;
  519. }
  520. .org-outline-5 {
  521. /* outline-5 */
  522. color: #228b22;
  523. }
  524. .org-outline-6 {
  525. /* outline-6 */
  526. color: #5f9ea0;
  527. }
  528. .org-outline-7 {
  529. /* outline-7 */
  530. color: #da70d6;
  531. }
  532. .org-outline-8 {
  533. /* outline-8 */
  534. color: #bc8f8f;
  535. }
  536. .org-preprocessor {
  537. /* font-lock-preprocessor-face */
  538. color: #da70d6;
  539. }
  540. .org-query-replace {
  541. /* query-replace */
  542. color: #b0e2ff;
  543. background-color: #cd00cd;
  544. }
  545. .org-regexp-grouping-backslash {
  546. /* font-lock-regexp-grouping-backslash */
  547. font-weight: bold;
  548. }
  549. .org-regexp-grouping-construct {
  550. /* font-lock-regexp-grouping-construct */
  551. font-weight: bold;
  552. }
  553. .org-region {
  554. /* region */
  555. background-color: #eedc82;
  556. }
  557. .org-rmail-highlight {
  558. }
  559. .org-scroll-bar {
  560. /* scroll-bar */
  561. background-color: #bfbfbf;
  562. }
  563. .org-secondary-selection {
  564. /* secondary-selection */
  565. background-color: #ffff00;
  566. }
  567. .org-shadow {
  568. /* shadow */
  569. color: #7f7f7f;
  570. }
  571. .org-show-paren-match {
  572. /* show-paren-match */
  573. background-color: #40e0d0;
  574. }
  575. .org-show-paren-mismatch {
  576. /* show-paren-mismatch */
  577. color: #ffffff;
  578. background-color: #a020f0;
  579. }
  580. .org-string {
  581. /* font-lock-string-face */
  582. color: #bc8f8f;
  583. }
  584. .org-texinfo-heading {
  585. /* texinfo-heading */
  586. color: #0000ff;
  587. }
  588. .org-tool-bar {
  589. /* tool-bar */
  590. color: #000000;
  591. background-color: #bfbfbf;
  592. }
  593. .org-tooltip {
  594. /* tooltip */
  595. color: #000000;
  596. background-color: #ffffe0;
  597. }
  598. .org-trailing-whitespace {
  599. /* trailing-whitespace */
  600. background-color: #ff0000;
  601. }
  602. .org-type {
  603. /* font-lock-type-face */
  604. color: #228b22;
  605. }
  606. .org-underline {
  607. /* underline */
  608. text-decoration: underline;
  609. }
  610. .org-variable-name {
  611. /* font-lock-variable-name-face */
  612. color: #b8860b;
  613. }
  614. .org-variable-pitch {
  615. }
  616. .org-vertical-border {
  617. }
  618. .org-warning {
  619. /* font-lock-warning-face */
  620. color: #ff0000;
  621. font-weight: bold;
  622. }
  623. } /* END OF @media all */
  624. @media screen
  625. {
  626. body {
  627. margin: 10px 6% 10px 250px;
  628. font-family: Verdana, Helvetica, sans-serif;
  629. }
  630. .logo-link {
  631. position: fixed;
  632. top: 10px;
  633. left: 30px;
  634. }
  635. #table-of-contents {
  636. position: fixed;
  637. display: block;
  638. left: 10px;
  639. top: 180px;
  640. width: 200px;
  641. min-height:60px;
  642. max-height:55%;
  643. overflow:auto;
  644. }
  645. #table-of-contents h2 {
  646. display:none;
  647. }
  648. /* These style are only for IE: */
  649. * html {
  650. overflow-y: hidden;
  651. padding-bottom:0px;
  652. margin:0px;
  653. }
  654. * html body {
  655. height: 100%;
  656. overflow-y: auto;
  657. font-size: 100%;
  658. margin: 0px 0px 0px 250px;
  659. padding: 0px 10% 0px 0px;
  660. }
  661. * html #table-of-contents {
  662. position: absolute;
  663. width:200px;
  664. /*
  665. The evil IE-JavaScript hack :-) depends on Picture and y-distance.
  666. Added to support small screens (Netbooks...).
  667. */
  668. height: expression((document.body.clientHeight - 210) + "px");
  669. }
  670. * html h1 {
  671. margin-top:10px;
  672. }
  673. * html .logo-link {
  674. position: absolute;
  675. top: 10px;
  676. left: 30px;
  677. }
  678. } /* END OF @media screen */
  679. /* Printing */
  680. @page
  681. {
  682. margin-top:3cm;
  683. margin-bottom:2.5cm;
  684. }
  685. @page :left
  686. {
  687. margin-left:1.5cm;
  688. margin-right:2cm;
  689. }
  690. @page :right
  691. {
  692. margin-left:2cm;
  693. margin-right:1.5cm;
  694. }
  695. @media print
  696. {
  697. body {
  698. margin:0px;
  699. font-family: Verdana, Helvetica, sans-serif;
  700. }
  701. div {
  702. orphans:2;
  703. }
  704. p {
  705. orphans:2;
  706. }
  707. li {
  708. orphans:2;
  709. }
  710. .logo-link {
  711. top: 10px;
  712. left: 30px;
  713. }
  714. #table-of-contents h2 {
  715. margin-top:1.5cm;
  716. page-break-before:auto;
  717. border-style:none;
  718. }
  719. #text-table-of-contents {
  720. width:50%;
  721. margin-top:1cm;
  722. margin-left:0cm;
  723. margin-right:auto;
  724. text-align:left;
  725. }
  726. #table-of-contents ul {
  727. text-align:left;
  728. }
  729. h2 {
  730. page-break-before:always;
  731. }
  732. pre {
  733. page-break-inside:avoid;
  734. }
  735. /* Hide all org-info.js stuff for printing: */
  736. div#org-info-js_console-container {
  737. display:none;
  738. }
  739. div.org-info-js_local-toc {
  740. display:none;
  741. }
  742. table.org-info-js_info-navigation {
  743. display:none;
  744. }
  745. div.org-info-js_header-navigation {
  746. display:none;
  747. visibility:hidden; /* needed to overwrite the hardcoded style setting... */
  748. }
  749. } /* END OF @media print */