Advertisement
Guest User

Untitled

a guest
Jul 24th, 2011
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.29 KB | None | 0 0
  1. #popupOverlay {
  2.     background-attachment: scroll;
  3.     background-clip: border-box;
  4.     background-color: #000000;
  5.     background-image: none;
  6.     background-origin: padding-box;
  7.     background-position: 0 0;
  8.     background-repeat: repeat;
  9.     background-size: auto auto;
  10. }
  11. div#popupOverlay.visiblebox {
  12.     display: block;
  13. }
  14. div#popupOverlay.hiddenbox {
  15.     display: none;
  16. }
  17.  
  18. #popupOverlay {
  19.     height: 100%;
  20.     position: fixed;
  21.     width: 100%;
  22. }
  23. #popupOverlay {
  24.     left: 0;
  25.     overflow-x: hidden;
  26.     overflow-y: hidden;
  27.     position: absolute;
  28.     top: 0;
  29.     z-index: 999;
  30. }
  31. #popupOverlay {
  32.     background-color: #362314 !important;
  33. }
  34.  
  35. div#messagebox {
  36.     position: absolute;
  37.     background: transparent url(../images/opaque.png) repeat;
  38.     z-index: 9999;
  39.     padding: 10px;
  40.     visibility: hidden;
  41. }
  42.  
  43. div#messagebox div.claimbutton {
  44.     position: absolute;
  45.     bottom: 0;
  46.     right: 0;
  47.     width: 100%;
  48.     background: transparent url(../images/opaque.png) repeat;
  49.     text-align: right;
  50.     padding-top: 5px;
  51.     padding-bottom: 5px;
  52. }
  53.  
  54. div#messagebox div.claimbutton a:visited, div#messagebox div.claimbutton a {
  55.     font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  56.     color: #FFF;
  57.     text-shadow: #000 1px 1px 0px;
  58.     font-weight: bold;
  59.     padding-right: 5px;
  60. }
  61.  
  62. #message p {
  63.     position: relative;
  64.     clear: both;
  65. }
  66.  
  67. #messagebox #closebox {
  68.     position: absolute;
  69.     width: 30px;
  70.     height: 29px;
  71.     background: transparent url(../images/closemessagebland.png) no-repeat;
  72.     top: -5px;
  73.     left: -5px;
  74.     z-index: 5;
  75. }
  76.  
  77. div#message {
  78.     position: relative;
  79.     background: #fff;
  80.     font: 0.9em "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  81.     min-height: 90%;
  82.     overflow: hidden;
  83. }
  84.  
  85. div#message.waiting {
  86.     background: #fff url(../images/loading.gif) no-repeat center center;
  87. }
  88.  
  89. div#message h2 {
  90.     color: #000;
  91.     font: bold 1.3em "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  92.     margin-top: 0px;
  93. }
  94. div#message h2 a {
  95.     text-decoration: none;
  96.     color: #000;
  97. }
  98.  
  99. div#message blockquote {
  100.     padding: 0px;
  101.     font-weight: bold;
  102.     border-left: 5px solid #ccc;
  103. }
  104.  
  105. div#message blockquote p{
  106.     padding: 2px 5px;
  107. }
  108.  
  109. div#message img {
  110. }
  111.  
  112. div#messagebox.visiblebox {
  113.     display: block;
  114. }
  115. div#messagebox.hiddenbox {
  116.     display: none;
  117. }
  118. .hide { display: none; }
  119.  
  120. .clear {
  121.     clear: both;
  122. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement