style.css 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  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. #comment>form>textarea[name=message]{
  141. width: 100%;
  142. height: 100%;
  143. }
  144. .screen-small, .screen-large{
  145. display: none;
  146. }
  147. .table{
  148. display: table;
  149. }
  150. .row{
  151. display: table-row;
  152. }
  153. .cell{
  154. display: table-cell;
  155. }
  156. .column{
  157. display: table-column;
  158. }
  159. .fill,.fill-width{
  160. width: 100%;
  161. }
  162. .fill,.fill-height{
  163. height: 100%;
  164. }
  165. .align-right{
  166. text-align: right;
  167. }
  168. .align-left{
  169. text-align: left;
  170. }
  171. .align-center{
  172. text-align: center;
  173. }
  174. .block{
  175. display: block;
  176. }
  177. .outline{
  178. border-color: black;
  179. border-style: solid;
  180. border-width: 1px;
  181. }
  182. .top{
  183. z-index: 2147483638;
  184. }
  185. .overflow-hide{
  186. overflow: hidden;
  187. }
  188. .left{
  189. float: left;
  190. }
  191. .right{
  192. float: right;
  193. }
  194. #topbar.overflow-hide{
  195. max-height: 50px;
  196. }
  197. @media screen and (max-width: 767px){
  198. div#topbar a.menuitem:not(.topbar-home){
  199. padding-left: 5px;
  200. padding-right: 5px;
  201. }
  202. div.topbar-right .menuitem{
  203. margin-bottom: -1px;
  204. }
  205. a.topbar-home{
  206. padding: 0;
  207. }
  208. a.topbar-current{
  209. max-width: 205px;
  210. }
  211. div.topbar-left a.topbar-current{
  212. float: right !important;
  213. }
  214. div.topbar-right a.topbar-current{
  215. position: absolute;
  216. right: 1px;
  217. top: 0;
  218. width: auto;
  219. }
  220. div.topbar-right{
  221. display: none;
  222. }
  223. div.topbar-left{
  224. width: 100%;
  225. }
  226. div.topbar-right a{
  227. clear: both;
  228. float: right !important;
  229. width: 100%;
  230. }
  231. a.topbar-back,a.topbar-history{
  232. width: 35px !important;
  233. position: absolute;
  234. top: 0;
  235. padding: 0 !important;
  236. }
  237. div#topbar{
  238. min-height: 35px;
  239. }
  240. div.topbar-right{
  241. min-height: 35px;
  242. width: 100%;
  243. padding-top: 50px;
  244. }
  245. .topbar-back,.topbar-history{
  246. background: url(../img/headers/ui/separator.png) no-repeat scroll right center transparent;
  247. }
  248. .screen-small:not(.topbar-notifications){
  249. display: block;
  250. }
  251. }
  252. @media screen and (min-width: 768px){
  253. div#topbar .menuitem{
  254. /*font-size: 15px;*/
  255. padding-left: 5px;
  256. padding-right: 5px;
  257. }
  258. a.topbar-back{
  259. display: none !important;
  260. }
  261. div.topbar-right{
  262. height: 100%;
  263. }
  264. div.topbar-right a.topbar-current{
  265. display: none;
  266. }
  267. a.topbar-home{
  268. display: none;
  269. }
  270. .screen-large{
  271. display: block;
  272. }
  273. }
  274. @viewport{
  275. zoom: 1.0;
  276. width: device-width;
  277. }
  278. @viewport{
  279. zoom: 1.0;
  280. width: extend-to-zoom;
  281. }
  282. @viewport{
  283. orientation: portrait;
  284. }
  285. @-ms-viewport{
  286. width: extend-to-zoom;
  287. zoom: 1.0;
  288. }