floatingAd.css 906 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. .floatingAd .ad{
  2. z-index: 100;
  3. background: none;
  4. position: absolute;
  5. display: none;
  6. overflow: hidden;
  7. }
  8. .floatingAd a{
  9. color:#aaaaaa;
  10. display: inline-block;
  11. text-decoration: none;
  12. }
  13. .floatingAd a img{
  14. border:1px solid #eee;
  15. }
  16. .floatingAd .close{
  17. display: none;
  18. }
  19. .floatingAd .opacity{
  20. position: absolute;
  21. top: 0;
  22. width: 100%;
  23. height: 25px;
  24. background-color: #000000;
  25. opacity: 0.20;
  26. filter: alpha(opacity = 20);
  27. }
  28. .opacity1{
  29. opacity: 0.90;
  30. filter: alpha(opacity = 90);
  31. }
  32. .floatingAd .text{
  33. position: absolute;
  34. top: 0;
  35. width: 100%;
  36. height: 25px;
  37. color: #aaaaaa;
  38. line-height: 25px;
  39. }
  40. .floatingAd .text .button{
  41. position: relative;
  42. float: right;
  43. top: 5px;
  44. right: 5px;
  45. width: 16px;
  46. height: 16px;
  47. background: url("../images/close.gif") no-repeat;
  48. cursor: pointer;
  49. }
  50. .floatingAd .text .title{
  51. position: relative;
  52. float: left;
  53. font-size: 12px;
  54. margin-left: 5px;
  55. }