documentation.css 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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 .menu {
  28. position: fixed;
  29. left: 0;
  30. bottom: 0;
  31. top: 0;
  32. width: 300px;
  33. background: #ddd;
  34. overflow-y: scroll;
  35. }
  36. .documentation .doc_chapter {
  37. position: absolute;
  38. background: #fafafa;
  39. left: 300px;
  40. right: 0;
  41. padding: 0 20px;
  42. }
  43. .documentation .doc_chapter a {
  44. background: #eae3c6;
  45. }
  46. .documentation .doc_chapter a:hover {
  47. background: #D15E5E;
  48. color: white;
  49. }
  50. .documentation .doc_chapter .links {
  51. border-top: 1px solid #999;
  52. margin-top: 10px;
  53. padding-top: 10px;
  54. }
  55. .documentation .doc_chapter h2 {
  56. border-bottom: 1px solid #999;
  57. }