app.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. /*
  2. make all block level elements visible (for debugging purpose)
  3. *{
  4. border: 1px solid #000;
  5. padding: 1px;
  6. margin: 1px;
  7. }
  8. */
  9. html, body{
  10. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHklEQVQIW2NkYGBg+Pr1639ubm5GGA1nIEswUqYSAMjrL8JwoIBIAAAAAElFTkSuQmCC);
  11. width: 100% !important;
  12. height: 100% !important; /* Sue me :) */
  13. overflow: hidden;
  14. }
  15. #doc-search{
  16. color: #000000;
  17. margin: 11px;
  18. }
  19. #top-header{
  20. background-color: rgb(242, 249, 255);
  21. }
  22. #brand{
  23. margin: 14px;
  24. }
  25. #top-nav{
  26. width: 84%;
  27. position: fixed;
  28. z-index: 1000;
  29. background-color: #fff;
  30. /* padding-bottom: 15px; */
  31. border-bottom: 1px solid #eee;
  32. padding: 25px;
  33. }
  34. #top-nav ul{
  35. list-style: none;
  36. margin: 0;
  37. padding: 0;
  38. }
  39. #top-nav li{
  40. float: left;
  41. margin-right: 50px;
  42. }
  43. #side-nav{
  44. text-align: right;
  45. margin-top: 50px;
  46. /* display: inline-block; */
  47. /* float: left; */
  48. margin-right: 25px;
  49. position: fixed;
  50. width: 200px;
  51. }
  52. #side-nav ul{
  53. list-style-type: none;
  54. padding: 0;
  55. }
  56. #side-nav ul li a{
  57. text-decoration: none;
  58. }
  59. #side-nav ul li a:hover{
  60. text-decoration: underline;
  61. }
  62. #api-content{
  63. margin-top: 71px;
  64. background-color: #fff;
  65. height: 100%;
  66. padding: 60px;
  67. width: 50%;
  68. }
  69. td a{
  70. color: #0099FF;
  71. }
  72. th{
  73. padding: 12px;
  74. }
  75. table{
  76. width: 100%;
  77. }
  78. thead{
  79. padding: 50px;
  80. }
  81. tbody td{
  82. padding: 10px;
  83. }
  84. tbody td a{
  85. color: #000011 !important;
  86. }
  87. .content{
  88. /* padding: 50px; */
  89. /* background-color: #fff; */
  90. /* height: 100%; */
  91. /* margin-top: 113px; */
  92. /* height: 100%; */
  93. }
  94. .methods{
  95. list-style: none;
  96. }
  97. .methods li{
  98. margin-bottom: 75px;
  99. }
  100. code{
  101. background-color: #FAFAFA;
  102. }
  103. .method-header{
  104. padding: 20px;
  105. background-color: #FAFAFA;
  106. border: 1px solid #F0F0F0;
  107. }
  108. .fixed{
  109. position: fixed;
  110. }
  111. .full-height{
  112. height: 100%;
  113. }
  114. #column{
  115. position: relative;
  116. display: inline-block;
  117. white-space: nowrap;
  118. margin-left: 220px;
  119. width: 88%;
  120. height: 100%;
  121. overflow-y: auto;
  122. box-sizing: border-box;
  123. background-color: #fff;
  124. }
  125. .methods h4{
  126. color:darkorange;
  127. }