style.css
99 lines
| 1 | #darkbackground { |
| 2 | position: fixed; |
| 3 | background: transparent url(%styleurl%images/opaque80.png) repeat; |
| 4 | top: 0; |
| 5 | width: 100%; |
| 6 | left: 0; |
| 7 | height: 100%; |
| 8 | z-index: 99999; |
| 9 | visibility: visible; |
| 10 | } |
| 11 | |
| 12 | div#messagebox { |
| 13 | position: absolute; |
| 14 | background: transparent url(%styleurl%images/opaque.png) repeat; |
| 15 | z-index: 999; |
| 16 | padding: 10px; |
| 17 | visibility: visible; |
| 18 | } |
| 19 | |
| 20 | div#messagebox div.claimbutton { |
| 21 | position: absolute; |
| 22 | bottom: 0; |
| 23 | right: 0; |
| 24 | width: 100%; |
| 25 | background: transparent url(%styleurl%images/opaque.png) repeat; |
| 26 | text-align: right; |
| 27 | padding-top: 5px; |
| 28 | padding-bottom: 5px; |
| 29 | } |
| 30 | |
| 31 | div#messagebox div.claimbutton a:visited, div#messagebox div.claimbutton a { |
| 32 | font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif; |
| 33 | color: #FFF; |
| 34 | text-shadow: #000 1px 1px 0px; |
| 35 | font-weight: bold; |
| 36 | padding-right: 5px; |
| 37 | } |
| 38 | |
| 39 | #message p { |
| 40 | position: relative; |
| 41 | clear: both; |
| 42 | } |
| 43 | |
| 44 | #messagebox #closebox { |
| 45 | position: absolute; |
| 46 | width: 30px; |
| 47 | height: 29px; |
| 48 | background: transparent url(%styleurl%images/closemessagebland.png) no-repeat; |
| 49 | top: -5px; |
| 50 | left: -5px; |
| 51 | z-index: 5; |
| 52 | } |
| 53 | |
| 54 | div#message { |
| 55 | position: relative; |
| 56 | background: #fff; |
| 57 | font: 0.9em "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif; |
| 58 | min-height: 90%; |
| 59 | overflow: hidden; |
| 60 | } |
| 61 | |
| 62 | div#message.waiting { |
| 63 | background: #fff url(%styleurl%images/loading.gif) no-repeat center center; |
| 64 | } |
| 65 | |
| 66 | div#message h2 { |
| 67 | color: #000; |
| 68 | font: bold 1.3em "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif; |
| 69 | margin-top: 0px; |
| 70 | } |
| 71 | div#message h2 a { |
| 72 | text-decoration: none; |
| 73 | color: #000; |
| 74 | } |
| 75 | |
| 76 | div#message blockquote { |
| 77 | padding: 0px; |
| 78 | font-weight: bold; |
| 79 | border-left: 5px solid #ccc; |
| 80 | } |
| 81 | |
| 82 | div#message blockquote p{ |
| 83 | padding: 2px 5px; |
| 84 | } |
| 85 | |
| 86 | div#message img { |
| 87 | } |
| 88 | |
| 89 | div#messagebox.visiblebox { |
| 90 | display: block; |
| 91 | } |
| 92 | div#messagebox.hiddenbox { |
| 93 | display: none; |
| 94 | } |
| 95 | .hide { display: none; } |
| 96 | |
| 97 | .clear { |
| 98 | clear: both; |
| 99 | } |