popup.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. /* Styles for popups */
  2. .d-popup{
  3. position:absolute;
  4. top:100px;
  5. left:0;
  6. z-index:100;
  7. background-color:#ccc;
  8. background:url(../i/info-popup-bg-2.png) repeat;
  9. width:250px;
  10. border-radius: 10px;
  11. -moz-border-radius: 10px;
  12. -webkit-border-radius: 10px;
  13. }
  14. .d-popup-inner{
  15. padding:20px;
  16. color:#fff;
  17. }
  18. .d-popup .close{
  19. position:absolute;
  20. top:10px;
  21. right:10px;
  22. display:block;
  23. width:14px;
  24. height:14px;
  25. /*background:url(../i/info-popup-sprite.png) no-repeat;*/
  26. background:url(../i/info-popup-sprite-2011-12-14.png) no-repeat 0 -1px;
  27. cursor:pointer;
  28. font-size:0;
  29. line-height:0;
  30. text-indent:-9999px;
  31. }
  32. .d-popup span.close:hover{
  33. background-position:0 -17px;
  34. }
  35. .d-popup span.close:active{
  36. background-position:0 -33px;
  37. }
  38. .d-popup-title{
  39. font-size:11px;
  40. text-transform:uppercase;
  41. text-align:center;
  42. color:#fffdd4;
  43. margin:0 0 9px;
  44. }
  45. .d-popup-items{
  46. font-size:12px;
  47. color:#fff;
  48. }
  49. .d-popup-items .item{
  50. margin:0 0 9px;
  51. }
  52. .d-popup-items a{
  53. color:#aaa;
  54. padding-right:5px;
  55. }
  56. .d-popup .prop-box{
  57. display:block;
  58. }
  59. .d-popup .prop-title{
  60. color:#bbb;
  61. }
  62. .d-popup .prop-value{
  63. color:#fff;
  64. }
  65. /* errors popup */
  66. .d-popup-errors{
  67. width:auto;
  68. background: url(../i/auth/form-bg.png) repeat;
  69. }
  70. .d-popup-errors .d-popup-inner{
  71. width:480px;
  72. padding:20px 40px 0;
  73. }
  74. .d-popup-errors .d-popup-title{
  75. position:relative;
  76. margin:0 0 27px;
  77. padding:0 105px 0 40px;
  78. font-size:21px;
  79. line-height:27px;
  80. font-weight:normal;
  81. text-transform:uppercase;
  82. color:#6536c4;
  83. text-align:left;
  84. background:url(../i/auth/planet-1.png) no-repeat 5px 13px;
  85. letter-spacing:-1px;
  86. }
  87. .d-popup-errors .planets{
  88. display:block;
  89. width:91px;
  90. height:7px;
  91. position:absolute;
  92. top:11px;
  93. right:0;
  94. background:url(../i/auth/planet-2.png) no-repeat;
  95. }
  96. .d-popup-errors .d-popup-main{
  97. padding-left:40px;
  98. min-height:250px;
  99. }
  100. .d-popup-errors .section-title{
  101. margin:0 0 38px;
  102. font-size:30px;
  103. font-weight:normal;
  104. color:#f0f042;
  105. }
  106. .d-popup-errors .d-popup-summary{
  107. padding:0 0 20px 0;
  108. font-size:15px;
  109. }
  110. .d-popup-errors .d-popup-summary li{
  111. padding-left:15px;
  112. background:url(../i/blue-bullet.png) no-repeat 0 50%;
  113. }
  114. .d-popup-errors .footnotes{
  115. margin: 0 -40px;
  116. padding:15px 20px;
  117. font-size:14px;
  118. line-height:18px;
  119. border-top:2px solid #34352f;
  120. color:#686c6d;
  121. }
  122. .d-popup-errors .questions-url{
  123. color:#686c6d;
  124. text-decoration:none;
  125. }
  126. .d-popup-errors .additional-info{
  127. float:left;
  128. white-space:nowrap;
  129. font-size:12px;
  130. }
  131. .d-popup-errors .report-case-url{
  132. float:right;
  133. display:block;
  134. color:#686c6d;
  135. }