style.css 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. .clearer
  2. {
  3. clear: both;
  4. }
  5. * {
  6. margin: 0;
  7. padding: 0;
  8. }
  9. #header
  10. {
  11. background-position: center top;
  12. background-repeat: no-repeat;
  13. background-color: white;
  14. position: fixed;
  15. width: 100%;
  16. top: 0;
  17. left: 0;
  18. z-index: 2;
  19. }
  20. .error
  21. {
  22. margin: 5px;
  23. color: #cc3333;
  24. font-weight: bold;
  25. text-align: center;
  26. padding: 5px;
  27. }
  28. label, input {
  29. display: block;
  30. clear: both;
  31. }
  32. input[type='checkbox'] {
  33. height: 40px;
  34. width: 40px;
  35. border: 1px solid gray;
  36. margin: 0 auto;
  37. }
  38. label {
  39. margin: 4px auto;
  40. text-align: center;
  41. }
  42. .back
  43. {
  44. text-align: center;
  45. height: 36px;
  46. line-height: 36px;
  47. }
  48. #loading
  49. {
  50. background: #ff0000;
  51. color: white;
  52. position: fixed;
  53. top: 0px;
  54. right: 0px;
  55. padding: 2px;
  56. }
  57. .loader {
  58. padding: 32px;
  59. text-align: center;
  60. }
  61. .item
  62. {
  63. margin: 2px;
  64. }
  65. .buzz {
  66. padding: 16px;
  67. }
  68. .item:hover
  69. {
  70. background: #e7e7e7;
  71. }
  72. .item_title
  73. {
  74. font-weight: bold;
  75. }
  76. .item_thumb
  77. {
  78. float: left;
  79. padding: 0 8px 8px 0;
  80. }
  81. #container {
  82. position: relative;
  83. z-index: 1;
  84. }
  85. #container .screen
  86. {
  87. width:100%;
  88. position:absolute;
  89. top:0;
  90. left:0;
  91. }
  92. /* items */
  93. .item_left
  94. {
  95. margin-top: 6px;
  96. height: 62px;
  97. line-height: 62px;
  98. background-position: top left;
  99. background-repeat: repeat-y;
  100. color: white;
  101. margin: 10px 20px;
  102. text-align: center;
  103. }
  104. .item_right
  105. {
  106. height: 100%;
  107. margin-left: 10px;
  108. padding-right: 10px;
  109. background-position: top right;
  110. background-repeat: repeat-y;
  111. }
  112. /* fields */
  113. .field_left
  114. {
  115. margin-top: 6px;
  116. height: 62px;
  117. line-height: 62px;
  118. background-position: top left;
  119. background-repeat: repeat-y;
  120. color: white;
  121. margin: 5px 10px;
  122. }
  123. .field_right
  124. {
  125. height: 100%;
  126. margin-left: 10px;
  127. padding-right: 10px;
  128. background-position: top right;
  129. background-repeat: repeat-y;
  130. }
  131. .field_left input
  132. {
  133. font-size: 50px;
  134. border: 0;
  135. line-height: 50px;
  136. width: 100%;
  137. background: transparent;
  138. }
  139. /* buttons */
  140. .button_left
  141. {
  142. margin-top: 6px;
  143. height: 62px;
  144. line-height: 62px;
  145. background-position: top left;
  146. background-repeat: repeat-y;
  147. color: white;
  148. margin: 10px auto;
  149. width: 40%;
  150. }
  151. .button_right
  152. {
  153. height: 100%;
  154. margin-left: 10px;
  155. padding-right: 10px;
  156. background-position: top right;
  157. background-repeat: repeat-y;
  158. text-align: center;
  159. }
  160. body
  161. {
  162. font-size: 24px;
  163. }
  164. body {
  165. background: url("../images/bg.png");
  166. background-attachment: fixed;
  167. }
  168. #header {
  169. height: 105px;
  170. background-image: url("../images/header.png");
  171. }
  172. #container {
  173. margin-top: 105px;
  174. }
  175. .back
  176. {
  177. text-align: center;
  178. font-size: 120%;
  179. height: 55px;
  180. line-height: 55px;
  181. }
  182. /* items */
  183. .item_left
  184. {
  185. background-image: url("../images/item_left.png");
  186. }
  187. .item_right
  188. {
  189. background-image: url("../images/item_right.png");
  190. }
  191. /* items */
  192. .button_left
  193. {
  194. background-image: url("../images/item_left.png");
  195. }
  196. .button_right
  197. {
  198. background-image: url("../images/item_right.png");
  199. }
  200. /* fields */
  201. .field_left
  202. {
  203. background-image: url("../images/field_left.png");
  204. }
  205. .field_right
  206. {
  207. background-image: url("../images/field_right.png");
  208. }
  209. .item_thumb
  210. {
  211. margin: 2px;
  212. width: 72px;
  213. height: 72px;
  214. }