style.css 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. body{
  2. padding:10px;
  3. }
  4. /* parent: modules_content */
  5. div.modules_nav_wrapper{
  6. position:absolute;
  7. left:0;
  8. bottom: 0;
  9. width:299px;
  10. height:100%;
  11. padding:16px 12px;
  12. overflow:auto;
  13. -webkit-overflow-scrolling:touch;
  14. }
  15. /* parent: modules_content */
  16. div.modules_docs_wrapper{
  17. position:absolute;
  18. left:300px;
  19. right:0;
  20. height:100%;
  21. padding:0;
  22. border:0;
  23. margin:0;
  24. overflow:auto;
  25. -webkit-overflow-scrolling:touch;
  26. }
  27. /* parent: modules_docs_wrapper */
  28. iframe.modules_docs_iframe{
  29. display:block;
  30. width:100%;
  31. height:100%;
  32. padding:0;
  33. border:0;
  34. margin:0;
  35. }
  36. /* ***** table ***** */
  37. table{
  38. border-spacing: 0;
  39. width: 100%;
  40. margin: 16px 0;
  41. }
  42. table.modman{
  43. font-size: 90%;
  44. table-layout: auto;
  45. margin: 0;
  46. }
  47. tr:nth-child(even){
  48. background: #f5f5f5;
  49. }
  50. tr:nth-child(odd){
  51. background: #fff;
  52. }
  53. th{
  54. background: #eee;
  55. border-radius: 3px 3px 0 0;
  56. padding-left: 4px;
  57. }
  58. td{
  59. padding:3px 2px 3px 10px;
  60. }
  61. th.mx2docs:first-child{
  62. width: 200px;
  63. }
  64. td.mx2docs:first-child{
  65. width: 200px;
  66. }
  67. th.modman{
  68. padding: 0 8px;
  69. }
  70. td.modman{
  71. padding: 0 8px;
  72. }
  73. h1,
  74. h2,
  75. h3,
  76. h4,
  77. h5,
  78. h6{
  79. }
  80. h1{
  81. }
  82. h2{
  83. }
  84. h3{
  85. }
  86. h4{
  87. margin-top:24px;
  88. }
  89. h5{
  90. font-size: 18px;
  91. }
  92. h6{
  93. }