style.css 5.0 KB

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