You are here

popup.css in Popup message 6

#popup-message-background {
  display:none;
  position:fixed;
  _position:absolute; /* hack for internet explorer 6*/
  height:100%;
  width:100%;
  top:0;
  left:0;
  background:#000000;
  border:1px solid #cecece;
  z-index:1;
}

#popup-message-window {
  display:none;
  position:fixed;
  _position:absolute; /* hack for internet explorer 6*/
  overflow: auto;
  background:#FFFFFF;
  border:10px solid #000000;
  border-radius: 10px 10px 10px 10px;
  z-index:200;
  padding:12px;
  font-size:13px;
}

#popup-message-window h1.popup-message-title {
  text-align:left;
  color: black;
  font-size:22px;
  font-weight:700;
  border-bottom:1px dotted #D3D3D3;
  padding-bottom:2px;
  margin-bottom:20px;
}

#popup-message-close {
  background: transparent url(img/close.png) no-repeat top left;
  text-indent: -1000px;
  width: 16px;
  height: 16px;
  font-size: 0px;
  right:6px;
  top:4px;
  position:absolute;
  display:block;
  cursor: pointer;
}

File

styles/black/popup.css
View source
  1. #popup-message-background {
  2. display:none;
  3. position:fixed;
  4. _position:absolute; /* hack for internet explorer 6*/
  5. height:100%;
  6. width:100%;
  7. top:0;
  8. left:0;
  9. background:#000000;
  10. border:1px solid #cecece;
  11. z-index:1;
  12. }
  13. #popup-message-window {
  14. display:none;
  15. position:fixed;
  16. _position:absolute; /* hack for internet explorer 6*/
  17. overflow: auto;
  18. background:#FFFFFF;
  19. border:10px solid #000000;
  20. border-radius: 10px 10px 10px 10px;
  21. z-index:200;
  22. padding:12px;
  23. font-size:13px;
  24. }
  25. #popup-message-window h1.popup-message-title {
  26. text-align:left;
  27. color: black;
  28. font-size:22px;
  29. font-weight:700;
  30. border-bottom:1px dotted #D3D3D3;
  31. padding-bottom:2px;
  32. margin-bottom:20px;
  33. }
  34. #popup-message-close {
  35. background: transparent url(img/close.png) no-repeat top left;
  36. text-indent: -1000px;
  37. width: 16px;
  38. height: 16px;
  39. font-size: 0px;
  40. right:6px;
  41. top:4px;
  42. position:absolute;
  43. display:block;
  44. cursor: pointer;
  45. }