You are here

popup_announcement.css in Pop-up announcement 7

Primary CSS file for the Pop-up announcement module.

File

popup_announcement.css
View source
  1. /**
  2. * @file
  3. * Primary CSS file for the Pop-up announcement module.
  4. */
  5. #popup-announcement-overlay {
  6. position: fixed;
  7. left: 0;
  8. top: 0;
  9. height: 100%;
  10. width: 100%;
  11. overflow: hidden;
  12. filter: alpha(opacity=50);
  13. -moz-opacity: 0.5;
  14. -khtml-opacity: 0.5;
  15. opacity: 0.5;
  16. z-index: 9998;
  17. background-color: black;
  18. }
  19. #popup-announcement-wrap {
  20. position: absolute;
  21. z-index: 9999;
  22. overflow: auto;
  23. background: white;
  24. border-radius: 8px;
  25. -moz-box-shadow: 0 0 10px rgba(0,0,0,0.3);
  26. -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.3);
  27. box-shadow: 0 0 10px rgba(0,0,0,0.3);
  28. }
  29. #popup-announcement {
  30. padding: 8px;
  31. }
  32. #popup-announcement-close {
  33. position: absolute;
  34. bottom: 8px;
  35. right: 8px;
  36. height: 26px;
  37. width: 26px;
  38. /* todo image right here as code + ?convert to svg? */
  39. background: url('images/popup-announcement-icons.png');
  40. }
  41. #popup-announcement-close:hover {
  42. background: url('images/popup-announcement-icons.png') 0 -28px;
  43. cursor: pointer;
  44. }