documenter_style.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. /*!
  2. * Documenter 2.0
  3. * http://rxa.li/documenter
  4. *
  5. * Copyright 2012, Xaver Birsak
  6. * http://revaxarts.com
  7. *
  8. */
  9. html, body{max-width:100%;}
  10. body{ padding-bottom: 40px;}
  11. #documenter_content{
  12. padding-top: 200px;
  13. }
  14. #documenter-cover{
  15. min-height:600px;
  16. }
  17. section h3,
  18. section h4,
  19. section h5,
  20. section h6 {
  21. padding: 0;
  22. clear: both;
  23. line-height: 2.5em;
  24. }
  25. section h3{ font-size:2em;}
  26. section h4{ font-size:1.5em;}
  27. section h5{ font-size:1.3em;}
  28. section h6{ font-size:1.1em;}
  29. hr.notop{
  30. margin-top:3px;
  31. }
  32. footer{
  33. padding-bottom:500px;
  34. }
  35. .container{
  36. padding-bottom:3px;
  37. }
  38. .navbar a.brand{
  39. display:inline-block;
  40. width:200px;
  41. height:50px;
  42. background-position:center left;
  43. background-repeat:no-repeat;
  44. text-indent:-9999px;
  45. margin:0;
  46. padding:0;
  47. }
  48. .page-header{
  49. border:0;
  50. }
  51. .navbar .nav li a{
  52. border-radius:3px;
  53. display:block;
  54. white-space:nowrap;
  55. padding:6px 11px 7px;
  56. max-width:100px;
  57. overflow:hidden;
  58. text-overflow:ellipsis;
  59. text-decoration:none;
  60. }
  61. .navbar .nav li ul{
  62. border-radius:5px;
  63. display:none;
  64. position:absolute;
  65. list-style-type:none;
  66. min-width:100px;
  67. padding:3px;
  68. box-shadow:0 0 3px rgba(0,0,0,0.3);
  69. }
  70. .navbar .nav > li:hover ul{
  71. display:block;
  72. }
  73. .marketing-byline {
  74. list-style:none;
  75. text-align:center;
  76. }
  77. .marketing-byline li{
  78. display:inline;
  79. padding:0 2px;
  80. }
  81. .download-info{
  82. clear:both;
  83. }
  84. section{
  85. margin-top:200px;
  86. }
  87. img{
  88. height:auto !important;
  89. }
  90. iframe{
  91. max-width:100% !important;
  92. }
  93. @media (max-width: 979px) {
  94. #documenter_content{
  95. padding-top: 0px;
  96. }
  97. .navbar .nav > li > a{
  98. padding:6px 11px 7px;
  99. max-width:100%;
  100. overflow:hidden;
  101. text-overflow:ellipsis;
  102. }
  103. .navbar .nav li ul{
  104. display:none;
  105. box-shadow:none;
  106. position:static;
  107. }
  108. .navbar .nav li:hover ul{
  109. display:block;
  110. }
  111. .navbar .nav li ul li{
  112. display:block;
  113. }
  114. .navbar .nav li a{
  115. max-width:100%;
  116. }
  117. section{
  118. margin-top:80px;
  119. }
  120. }
  121. @media (max-width: 480px) {
  122. section{
  123. margin-top:30px;
  124. }
  125. }