style.css 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. @import url(fonts.css);
  2. html,body{
  3. width: 100%;
  4. height: 100%;
  5. overflow: hidden;
  6. padding: 0;
  7. margin: 0;
  8. }
  9. h1,h2,h3,h4,p{
  10. margin: 0;
  11. }
  12. p{
  13. padding-top: 16px;
  14. padding-bottom: 16px;
  15. padding-left: 5px;
  16. padding-right: 5px;
  17. }
  18. #cacheStatus{
  19. height: 100% !important;
  20. top: 0 !important;
  21. }
  22. div#topbar{
  23. width: 100%;
  24. border-color: black;
  25. border-style: solid;
  26. border-width: 1px;
  27. background-color: black;
  28. color: white;
  29. overflow: hidden;
  30. }
  31. div.topbar-left{
  32. height: 100%;
  33. }
  34. div#topbar a{
  35. color: white;
  36. text-decoration: none;
  37. text-transform: capitalize;
  38. text-align: center;
  39. vertical-align: middle;
  40. border-color: white;
  41. border-style: solid;
  42. border-width: 0;
  43. border-right-width: 1px;
  44. border-left-width: 1px;
  45. margin-left: -1px;
  46. float: left;
  47. font-size: 20px;
  48. line-height: 35px;
  49. padding-left: 2px;
  50. padding-right: 2px;
  51. overflow: hidden;
  52. cursor: pointer;
  53. min-width: 35px;
  54. }
  55. div#topbar a:hover{
  56. background-color: white;
  57. color: black;
  58. border-bottom-color: black;
  59. }
  60. div.topbar-right{
  61. float: right;
  62. }
  63. div.topbar-left{
  64. float: left;
  65. }
  66. a.topbar-home{
  67. background-color: darkred;
  68. }
  69. a.topbar-home:hover{
  70. background-color: gray !important;
  71. }
  72. div#content{
  73. width: 100%;
  74. -webkit-overflow-scrolling: touch;
  75. overflow: auto;
  76. }
  77. div#loading{
  78. width: 100%;
  79. height: 100%;
  80. position: absolute;
  81. top: 0;
  82. left: 0;
  83. background-color: gray;
  84. background-color: rgba(0,0,0,0.5);
  85. background-image: url('../img/load.gif');
  86. background-repeat: no-repeat;
  87. background-position: center;
  88. }
  89. span.icon-bugs{
  90. background-image: url('../img/bug.png');
  91. background-size: 100%;
  92. background-repeat: no-repeat;
  93. display: block;
  94. width: 35px;
  95. height: 35px;
  96. font-size: 13px;
  97. }
  98. span.icon-bugs-invert{
  99. background-image: url('../img/bug-invert.png');
  100. background-size: 100%;
  101. background-repeat: no-repeat;
  102. display: block;
  103. float: left;
  104. width: 35px;
  105. height: 35px;
  106. }
  107. @media screen and (max-width: 767px){
  108. div#topbar a{
  109. padding-left: 5px;
  110. padding-right: 5px;
  111. }
  112. a.tabbar-home{
  113. width: 35px;
  114. }
  115. a.topbar-home span{
  116. display: none;
  117. }
  118. a.topbar-home{
  119. padding-left: 2px !important;
  120. padding-right: 2px !important;
  121. }
  122. a.topbar-home:after{
  123. content: "\2261";
  124. /*use \8943 elsewhere for options dropdown*/
  125. }
  126. div.topbar-right{
  127. display: none;
  128. }
  129. div.topbar-left{
  130. width: 100%;
  131. }
  132. div.topbar-right a{
  133. clear: both;
  134. float: right !important;
  135. width: 100%;
  136. border-left-style: none !important;
  137. }
  138. a.topbar-current{
  139. float: right !important;
  140. }
  141. a.topbar-back,a.topbar-history,a.topbar-index{
  142. width: 35px !important;
  143. position: absolute;
  144. top: 0;
  145. padding: 0 !important;
  146. border-bottom: 1px solid white !important;
  147. }
  148. a.topbar-back{
  149. background-color: darkred;
  150. left: 0;
  151. }
  152. a.topbar-back:hover{
  153. background-color: gray !important;
  154. }
  155. a.topbar-history{
  156. left: 36px;
  157. }
  158. a.topbar-index{
  159. left: 72px;
  160. width: auto !important;
  161. padding-right: 5px !important;
  162. }
  163. div#topbar{
  164. min-height: 35px;
  165. }
  166. div.topbar-right{
  167. min-height: 35px;
  168. width: 100%;
  169. padding-top: 35px;
  170. }
  171. }
  172. @media screen and (min-width: 768px){
  173. div#topbar a{
  174. font-size: 15px;
  175. }
  176. div#topbar a:hover + a{
  177. border-left-color: black;
  178. }
  179. a.topbar-back{
  180. display: none !important;
  181. }
  182. div.topbar-right{
  183. height: 100%;
  184. }
  185. a.topbar-index{
  186. display: none;
  187. }
  188. }
  189. @viewport{
  190. zoom: 1.0;
  191. width: device-width;
  192. }
  193. @viewport{
  194. zoom: 1.0;
  195. width: extend-to-zoom;
  196. }
  197. @-ms-viewport{
  198. width: extend-to-zoom;
  199. zoom: 1.0;
  200. }