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:2px solid #cecece;
  z-index:200;
  padding:12px;
  font-size:13px;
}

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

#popup-message-close {
  font-size:18px;
  line-height:14px;
  right:6px;
  top:4px;
  position:absolute;
  color:#6fa5fd;
  font-weight:700;
  display:block;
  cursor: pointer;
}

File

styles/default/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:2px solid #cecece;
  20. z-index:200;
  21. padding:12px;
  22. font-size:13px;
  23. }
  24. #popup-message-window h1.popup-message-title {
  25. text-align:left;
  26. color:#6FA5FD;
  27. font-size:22px;
  28. font-weight:700;
  29. border-bottom:1px dotted #D3D3D3;
  30. padding-bottom:2px;
  31. margin-bottom:20px;
  32. }
  33. #popup-message-close {
  34. font-size:18px;
  35. line-height:14px;
  36. right:6px;
  37. top:4px;
  38. position:absolute;
  39. color:#6fa5fd;
  40. font-weight:700;
  41. display:block;
  42. cursor: pointer;
  43. }