style.css 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  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: calc(100% - 2px);
  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 .menuitem{
  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. overflow: hidden;
  50. cursor: pointer;
  51. min-width: 35px;
  52. }
  53. div#topbar .menu{
  54. color: black;
  55. }
  56. div#topbar .menuitem:hover{
  57. background-color: white;
  58. color: black;
  59. border-bottom-color: black;
  60. }
  61. div.topbar-right{
  62. float: right;
  63. }
  64. div.topbar-left{
  65. float: left;
  66. }
  67. a.topbar-home{
  68. background-color: darkred;
  69. }
  70. a.topbar-home:hover{
  71. background-color: gray !important;
  72. }
  73. div#content{
  74. width: 100%;
  75. -webkit-overflow-scrolling: touch;
  76. overflow: auto;
  77. }
  78. div#loading{
  79. width: 100%;
  80. height: 100%;
  81. position: absolute;
  82. top: 0;
  83. left: 0;
  84. background-color: gray;
  85. background-color: rgba(0,0,0,0.5);
  86. background-image: url('../img/load.gif');
  87. background-repeat: no-repeat;
  88. background-position: center;
  89. }
  90. span.icon-bugs{
  91. background-image: url('../img/bug.png');
  92. background-size: 100%;
  93. background-repeat: no-repeat;
  94. display: block;
  95. width: 35px;
  96. height: 35px;
  97. font-size: 13px;
  98. float: left;
  99. }
  100. span.icon-bugs-invert{
  101. background-image: url('../img/bug-invert.png');
  102. background-size: 100%;
  103. background-repeat: no-repeat;
  104. display: block;
  105. float: left;
  106. width: 35px;
  107. height: 35px;
  108. }
  109. .screen-small, .screen-large{
  110. display: none;
  111. }
  112. .table{
  113. display: table;
  114. }
  115. .row{
  116. display: table-row;
  117. }
  118. .cell{
  119. display: table-cell;
  120. }
  121. .column{
  122. display: table-column;
  123. }
  124. .fill,.fill-width{
  125. width: 100%;
  126. }
  127. .fill,.fill-height{
  128. height: 100%;
  129. }
  130. .align-right{
  131. text-align: right;
  132. }
  133. .align-left{
  134. text-align: left;
  135. }
  136. .align-center{
  137. text-align: center;
  138. }
  139. .block{
  140. display: block;
  141. }
  142. .outline{
  143. border-color: black;
  144. border-style: solid;
  145. border-width: 1px;
  146. }
  147. @media screen and (max-width: 767px){
  148. div#topbar .menuitem, !a.topbar-home{
  149. padding-left: 5px;
  150. padding-right: 5px;
  151. }
  152. a.topbar-home{
  153. padding: 0;
  154. }
  155. div.topbar-right{
  156. display: none;
  157. }
  158. div.topbar-left{
  159. width: 100%;
  160. }
  161. div.topbar-right a{
  162. clear: both;
  163. float: right !important;
  164. width: 100%;
  165. border-left-style: none !important;
  166. }
  167. a.topbar-current{
  168. float: right !important;
  169. }
  170. a.topbar-back,a.topbar-history,a.topbar-index{
  171. width: 35px !important;
  172. position: absolute;
  173. top: 0;
  174. padding: 0 !important;
  175. border-bottom: 1px solid white !important;
  176. }
  177. a.topbar-back{
  178. background-color: darkred;
  179. left: 0;
  180. }
  181. a.topbar-back:hover{
  182. background-color: gray !important;
  183. }
  184. a.topbar-history{
  185. left: 36px;
  186. }
  187. a.topbar-index{
  188. left: 72px;
  189. width: auto !important;
  190. padding-right: 5px !important;
  191. }
  192. div#topbar{
  193. min-height: 35px;
  194. }
  195. div.topbar-right{
  196. min-height: 35px;
  197. width: 100%;
  198. padding-top: 35px;
  199. }
  200. .screen-small{
  201. display: block;
  202. }
  203. }
  204. @media screen and (min-width: 768px){
  205. div#topbar .menuitem{
  206. font-size: 15px;
  207. padding-left: 5px;
  208. padding-right: 5px;
  209. }
  210. div#topbar .menuitem:hover + a{
  211. border-left-color: black;
  212. }
  213. a.topbar-back{
  214. display: none !important;
  215. }
  216. div.topbar-right{
  217. height: 100%;
  218. }
  219. a.topbar-index{
  220. display: none;
  221. }
  222. .screen-large{
  223. display: block;
  224. }
  225. }
  226. @viewport{
  227. zoom: 1.0;
  228. width: device-width;
  229. }
  230. @viewport{
  231. zoom: 1.0;
  232. width: extend-to-zoom;
  233. }
  234. @-ms-viewport{
  235. width: extend-to-zoom;
  236. zoom: 1.0;
  237. }