123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- .clearer
- {
- clear: both;
- }
- * {
- margin: 0;
- padding: 0;
- }
- #header
- {
- background-position: center top;
- background-repeat: no-repeat;
- background-color: white;
- position: fixed;
- width: 100%;
- top: 0;
- left: 0;
- z-index: 2;
- }
- .error
- {
- margin: 5px;
- color: #cc3333;
- font-weight: bold;
- text-align: center;
- padding: 5px;
- }
- label, input {
- display: block;
- clear: both;
- }
- input[type='checkbox'] {
- height: 40px;
- width: 40px;
- border: 1px solid gray;
- margin: 0 auto;
- }
- label {
- margin: 4px auto;
- text-align: center;
- }
- .back
- {
- text-align: center;
- height: 36px;
- line-height: 36px;
- }
- #loading
- {
- background: #ff0000;
- color: white;
- position: fixed;
- top: 0px;
- right: 0px;
- padding: 2px;
- }
- .loader {
- padding: 32px;
- text-align: center;
- }
- .item
- {
- margin: 2px;
- }
- .buzz {
- padding: 16px;
- }
- .item:hover
- {
- background: #e7e7e7;
- }
- .item_title
- {
- font-weight: bold;
- }
- .item_thumb
- {
- float: left;
- padding: 0 8px 8px 0;
- }
- #container {
- position: relative;
- z-index: 1;
- }
- #container .screen
- {
- width:100%;
- position:absolute;
- top:0;
- left:0;
- }
- /* items */
- .item_left
- {
- margin-top: 6px;
- height: 62px;
- line-height: 62px;
- background-position: top left;
- background-repeat: repeat-y;
- color: white;
- margin: 10px 20px;
- text-align: center;
- }
- .item_right
- {
- height: 100%;
- margin-left: 10px;
- padding-right: 10px;
- background-position: top right;
- background-repeat: repeat-y;
- }
- /* fields */
- .field_left
- {
- margin-top: 6px;
- height: 62px;
- line-height: 62px;
- background-position: top left;
- background-repeat: repeat-y;
- color: white;
- margin: 5px 10px;
- }
- .field_right
- {
- height: 100%;
- margin-left: 10px;
- padding-right: 10px;
- background-position: top right;
- background-repeat: repeat-y;
- }
- .field_left input
- {
- font-size: 50px;
- border: 0;
- line-height: 50px;
- width: 100%;
- background: transparent;
- }
- /* buttons */
- .button_left
- {
- margin-top: 6px;
- height: 62px;
- line-height: 62px;
- background-position: top left;
- background-repeat: repeat-y;
- color: white;
- margin: 10px auto;
- width: 40%;
- }
- .button_right
- {
- height: 100%;
- margin-left: 10px;
- padding-right: 10px;
- background-position: top right;
- background-repeat: repeat-y;
- text-align: center;
- }
- body
- {
- font-size: 24px;
- }
- body {
- background: url("../images/bg.png");
- background-attachment: fixed;
- }
- #header {
- height: 105px;
- background-image: url("../images/header.png");
- }
- #container {
- margin-top: 105px;
- }
- .back
- {
- text-align: center;
- font-size: 120%;
- height: 55px;
- line-height: 55px;
- }
- /* items */
- .item_left
- {
- background-image: url("../images/item_left.png");
- }
- .item_right
- {
- background-image: url("../images/item_right.png");
- }
- /* items */
- .button_left
- {
- background-image: url("../images/item_left.png");
- }
- .button_right
- {
- background-image: url("../images/item_right.png");
- }
- /* fields */
- .field_left
- {
- background-image: url("../images/field_left.png");
- }
- .field_right
- {
- background-image: url("../images/field_right.png");
- }
- .item_thumb
- {
- margin: 2px;
- width: 72px;
- height: 72px;
- }
|