documentation.css 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. #wrapper {
  2. margin-left: 350px;
  3. text-align: left;
  4. }
  5. #header {
  6. text-align: left;
  7. margin: 20px 0;
  8. }
  9. #header .left {
  10. float: left;
  11. margin-right: 20px;
  12. }
  13. #header h1 {
  14. margin: 10px 0;
  15. }
  16. .documentation {
  17. border-top: 1px solid #999;
  18. }
  19. .documentation a {
  20. color: #C71212;
  21. cursor: pointer;
  22. }
  23. .documentation a:hover {
  24. color: white;
  25. background: #D15E5E;
  26. text-decoration: none;
  27. }
  28. .documentation pre {
  29. border-radius: 3px;
  30. border: 1px solid #ccc;
  31. background: #eee;
  32. padding: 5px;
  33. margin: 0 20px;
  34. }
  35. .documentation code {
  36. background: #eee;
  37. padding: 0 5px;
  38. }
  39. .documentation .menu {
  40. position: fixed;
  41. left: 0;
  42. bottom: 0;
  43. top: 0;
  44. width: 300px;
  45. background: #ddd;
  46. overflow-y: scroll;
  47. }
  48. .documentation .doc_chapter {
  49. position: absolute;
  50. background: #fafafa;
  51. left: 300px;
  52. right: 0;
  53. padding: 0 20px;
  54. }
  55. .documentation .doc_chapter a {
  56. background: #eae3c6;
  57. }
  58. .documentation .doc_chapter a:hover {
  59. background: #D15E5E;
  60. color: white;
  61. }
  62. .documentation .doc_chapter .links {
  63. border-top: 1px solid #999;
  64. margin-top: 10px;
  65. padding-top: 10px;
  66. }
  67. .documentation .doc_chapter h2 {
  68. border-bottom: 1px solid #999;
  69. }