documentation.css 1.1 KB

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