main.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /************************/
  2. /* GENERAL */
  3. /************************/
  4. body {
  5. color: #1e1e1e;
  6. }
  7. h1, h2, h3, h4, h5, h6, p, a, li, span, blockquote, input, textarea, select, label {
  8. font-family: 'Roboto', sans-serif;
  9. }
  10. p {
  11. /* font-size: 16px;
  12. line-height: 25px;
  13. margin-bottom: 20px;*/
  14. }
  15. a {
  16. text-decoration: none;
  17. color: inherit;
  18. }
  19. /* Sidebar */
  20. #top {
  21. background-color: #F5F5F5;
  22. width: 275px;
  23. position: fixed;
  24. top: 0;
  25. bottom: 0;
  26. left: 0;
  27. height: auto !important;
  28. overflow: auto;
  29. padding: 25px;
  30. box-sizing: border-box;
  31. display: flex;
  32. flex-direction: column;
  33. }
  34. @media (max-width: 1012px) {
  35. #top {
  36. box-shadow: 5px 0px 10px 0px rgba(0,0,0,0.25);
  37. position: fixed;
  38. z-index: 9999;
  39. left: -100%;
  40. width: 450px;
  41. background-color: #F5F5F5;
  42. transition: 0.2s left;
  43. }
  44. }
  45. @media (max-width: 767px) {
  46. #top {
  47. width: calc(100% - 50px);
  48. padding: 20px;
  49. }
  50. }
  51. @media (max-width: 1012px) {
  52. #top.open {
  53. left: 0;
  54. }
  55. }
  56. /* Content */
  57. #doc-content {
  58. padding: 25px 50px 25px 290px;
  59. margin: 0 !important;
  60. height: auto !important;
  61. }
  62. @media (max-width: 1012px) {
  63. #doc-content {
  64. padding: 110px 40px 40px 40px;
  65. }
  66. }
  67. @media (max-width: 767px) {
  68. #doc-content {
  69. padding: 90px 20px 50px 20px;
  70. }
  71. }
  72. /* Hide the default doxygen stuff that we dont want */
  73. .ui-resizable-handle {
  74. display: none !important;
  75. }
  76. #nav-sync {
  77. display: none !important;
  78. }
  79. #nav-tree {
  80. height: 100% !important;
  81. background: none;
  82. overflow: auto;
  83. padding: 35px;
  84. box-sizing: border-box;
  85. }
  86. #nav-path, #side-nav {
  87. display: none !important;
  88. }
  89. div.line,
  90. div.line a,
  91. div.line span {
  92. font-family: monospace;
  93. }