style.css 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  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. input[type=submit],button.recommend{
  19. background-image: url(../img/buttons/ui/recommend.png);
  20. background-color: #00caf2;
  21. border-color: #00acce;
  22. }
  23. input[type=submit]:active,button.recommend:active{
  24. border-color: #008aaa;
  25. background: #008aaa;
  26. color: #333;
  27. }
  28. .recommend-force{
  29. background-image: url(../img/buttons/ui/recommend.png) !important;
  30. background-color: #00caf2 !important;
  31. border-color: #00acce !important;
  32. }
  33. .recommend-force:active{
  34. border-color: #008aaa !important;
  35. background: #008aaa !important;
  36. color: #333 !important;
  37. }
  38. .cancel{
  39. background-image: url(../images/buttons/ui/danger.png);
  40. background-color: #b70404;
  41. color: #fff;
  42. text-shadow: -0.1rem -0.1rem 0 #830b0b;
  43. border: none;
  44. }
  45. .cancel:active{
  46. background-image: url(../images/buttons/ui/danger-press.png);
  47. background-color: #890707;
  48. }
  49. #cacheStatus{
  50. height: 100% !important;
  51. top: 0 !important;
  52. }
  53. div#topbar{
  54. width: calc(100% + 1px);
  55. background-color: #CD6723;
  56. background: url(../img/headers/ui/header.png) repeat-x 0 0;
  57. background-size: auto 100%;
  58. color: black;
  59. overflow: hidden;
  60. min-height: 50px;
  61. box-shadow: 0 1px 3px 1px rgba(0,0,0,0.3);
  62. }
  63. div.topbar-left{
  64. height: 100%;
  65. }
  66. div#topbar .menuitem{
  67. color: white;
  68. text-decoration: none;
  69. text-transform: capitalize;
  70. text-align: center;
  71. vertical-align: middle;
  72. margin-left: -1px;
  73. float: left;
  74. font-size: 25px;
  75. line-height: 50px;
  76. overflow: hidden;
  77. cursor: pointer;
  78. min-width: 35px;
  79. height: 50px;
  80. }
  81. div#topbar .menuitem:not(.topbar-home):not(.topbar-back){
  82. background: url(../img/headers/ui/separator.png) no-repeat scroll left center transparent;
  83. }
  84. div#topbar .menuitem:hover,div#topbar .menuitem:not(.topbar-home):not(.topbar-back):hover{
  85. background-image: url(../img/headers/ui/negative.png);
  86. background-repeat: repeat-x;
  87. }
  88. div#topbar .menuitem:active{
  89. background: #008aaa !important;
  90. color: #333;
  91. }
  92. div#topbar .menu{
  93. color: black;
  94. }
  95. div.topbar-right{
  96. float: right;
  97. }
  98. div.topbar-left{
  99. float: left;
  100. }
  101. div#content{
  102. width: 100%;
  103. -webkit-overflow-scrolling: touch;
  104. overflow: auto;
  105. padding-top: 5px;
  106. }
  107. div#loading{
  108. width: 100%;
  109. height: 100%;
  110. position: absolute;
  111. top: 0;
  112. left: 0;
  113. background-color: gray;
  114. background-color: rgba(0,0,0,0.5);
  115. background-image: url('../img/load.gif');
  116. background-repeat: no-repeat;
  117. background-position: center;
  118. }
  119. .screen-small, .screen-large{
  120. display: none;
  121. }
  122. .table{
  123. display: table;
  124. }
  125. .row{
  126. display: table-row;
  127. }
  128. .cell{
  129. display: table-cell;
  130. }
  131. .column{
  132. display: table-column;
  133. }
  134. .fill,.fill-width{
  135. width: 100%;
  136. }
  137. .fill,.fill-height{
  138. height: 100%;
  139. }
  140. .align-right{
  141. text-align: right;
  142. }
  143. .align-left{
  144. text-align: left;
  145. }
  146. .align-center{
  147. text-align: center;
  148. }
  149. .block{
  150. display: block;
  151. }
  152. .outline{
  153. border-color: black;
  154. border-style: solid;
  155. border-width: 1px;
  156. }
  157. .top{
  158. z-index: 2147483638;
  159. }
  160. .overflow-hide{
  161. overflow: hidden;
  162. }
  163. #topbar.overflow-hide{
  164. max-height: 50px;
  165. }
  166. @media screen and (max-width: 767px){
  167. div#topbar a.menuitem:not(.topbar-home){
  168. padding-left: 5px;
  169. padding-right: 5px;
  170. }
  171. div.topbar-right .menuitem{
  172. margin-bottom: -1px;
  173. }
  174. a.topbar-home{
  175. padding: 0;
  176. }
  177. a.topbar-current{
  178. max-width: 205px;
  179. }
  180. div.topbar-left a.topbar-current{
  181. float: right !important;
  182. }
  183. div.topbar-right a.topbar-current{
  184. position: absolute;
  185. right: 1px;
  186. top: 0;
  187. width: auto;
  188. }
  189. div.topbar-right{
  190. display: none;
  191. }
  192. div.topbar-left{
  193. width: 100%;
  194. }
  195. div.topbar-right a{
  196. clear: both;
  197. float: right !important;
  198. width: 100%;
  199. }
  200. a.topbar-back,a.topbar-history{
  201. width: 35px !important;
  202. position: absolute;
  203. top: 0;
  204. padding: 0 !important;
  205. }
  206. div#topbar{
  207. min-height: 35px;
  208. }
  209. div.topbar-right{
  210. min-height: 35px;
  211. width: 100%;
  212. padding-top: 50px;
  213. }
  214. .topbar-back,.topbar-history{
  215. background: url(../img/headers/ui/separator.png) no-repeat scroll right center transparent;
  216. }
  217. .screen-small{
  218. display: block;
  219. }
  220. }
  221. @media screen and (min-width: 768px){
  222. div#topbar .menuitem{
  223. /*font-size: 15px;*/
  224. padding-left: 5px;
  225. padding-right: 5px;
  226. }
  227. a.topbar-back{
  228. display: none !important;
  229. }
  230. div.topbar-right{
  231. height: 100%;
  232. }
  233. div.topbar-right a.topbar-current{
  234. display: none;
  235. }
  236. a.topbar-home{
  237. display: none;
  238. }
  239. .screen-large{
  240. display: block;
  241. }
  242. }
  243. @viewport{
  244. zoom: 1.0;
  245. width: device-width;
  246. }
  247. @viewport{
  248. zoom: 1.0;
  249. width: extend-to-zoom;
  250. }
  251. @-ms-viewport{
  252. width: extend-to-zoom;
  253. zoom: 1.0;
  254. }