You are here

popup.css in Popup message 8

#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: 9998;
}

#popup-message-wrapper {
  height: 100vh;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

#popup-message-window {
  display: block;
  position: fixed;
  _position: absolute; /* hack for internet explorer 6*/
  overflow: auto;
  background: #ffffff;
  border: 2px solid #cecece;
  z-index: 9999;
  padding: 12px;
  font-size: 13px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  box-sizing: border-box;
}

#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: 9998;
  12. }
  13. #popup-message-wrapper {
  14. height: 100vh;
  15. width: 100vw;
  16. position: absolute;
  17. top: 0;
  18. left: 0;
  19. display: none;
  20. }
  21. #popup-message-window {
  22. display: block;
  23. position: fixed;
  24. _position: absolute; /* hack for internet explorer 6*/
  25. overflow: auto;
  26. background: #ffffff;
  27. border: 2px solid #cecece;
  28. z-index: 9999;
  29. padding: 12px;
  30. font-size: 13px;
  31. left: 0;
  32. right: 0;
  33. top: 0;
  34. bottom: 0;
  35. margin: auto;
  36. max-width: 100%;
  37. max-height: 100%;
  38. box-sizing: border-box;
  39. }
  40. #popup-message-window h1.popup-message-title {
  41. text-align: left;
  42. color: #6fa5fd;
  43. font-size: 22px;
  44. font-weight: 700;
  45. border-bottom: 1px dotted #d3d3d3;
  46. padding-bottom: 2px;
  47. margin-bottom: 20px;
  48. }
  49. #popup-message-close {
  50. font-size: 18px;
  51. line-height: 14px;
  52. right: 6px;
  53. top: 4px;
  54. position: absolute;
  55. color: #6fa5fd;
  56. font-weight: 700;
  57. display: block;
  58. cursor: pointer;
  59. }