Няма описание
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. div.DTED_Lightbox_Wrapper {
  2. position: fixed;
  3. top: 0;
  4. left: 50%;
  5. margin-left: -390px;
  6. width: 780px;
  7. height: 100%;
  8. z-index: 11;
  9. div.DTED_Lightbox_Container {
  10. display: table;
  11. height: 100%;
  12. width: 100%;
  13. div.DTED_Lightbox_Content_Wrapper {
  14. display: table-cell;
  15. vertical-align: middle;
  16. width: 100%;
  17. div.DTED_Lightbox_Content {
  18. position: relative;
  19. box-shadow: 0 12px 30px 0 rgba(0,0,0,.5);
  20. border-radius: 6px;
  21. @include box-sizing(border-box);
  22. div.DTE {
  23. background: white;
  24. border-radius: 6px;
  25. border: 1px solid #666;
  26. @include box-sizing(border-box);
  27. div.DTE_Header {
  28. right: 0;
  29. width: auto;
  30. border-top-left-radius: 6px;
  31. border-top-right-radius: 6px;
  32. }
  33. div.DTE_Body_Content {
  34. box-sizing: border-box;
  35. background: #fcfcfc;
  36. }
  37. div.DTE_Footer {
  38. right: 0;
  39. width: auto;
  40. border-bottom-left-radius: 6px;
  41. border-bottom-right-radius: 6px;
  42. }
  43. }
  44. div.DTED_Lightbox_Close {
  45. @include close-icon();
  46. }
  47. }
  48. }
  49. }
  50. }
  51. div.DTED_Lightbox_Background {
  52. @include overlay-background();
  53. }
  54. body.DTED_Lightbox_Mobile {
  55. div.DTED_Lightbox_Background {
  56. height: 0;
  57. }
  58. div.DTED_Lightbox_Shown {
  59. display: none;
  60. }
  61. div.DTED_Lightbox_Wrapper {
  62. position: absolute;
  63. top: 0px;
  64. left: 0px;
  65. right: 0px;
  66. bottom: 0px;
  67. width: auto;
  68. height: auto;
  69. margin-left: 0;
  70. -webkit-overflow-scrolling: touch;
  71. div.DTED_Lightbox_Container {
  72. display: block;
  73. div.DTED_Lightbox_Content_Wrapper {
  74. display: block;
  75. div.DTED_Lightbox_Content {
  76. border: 4px solid rgba(220, 220, 220, 0.5);
  77. border-radius: 0;
  78. div.DTE {
  79. border-radius: 0;
  80. box-shadow: 0 0 5px #555;
  81. border: 2px solid #444;
  82. div.DTE_Header {
  83. border-top-left-radius: 0;
  84. border-top-right-radius: 0;
  85. }
  86. div.DTE_Footer {
  87. border-bottom-left-radius: 0;
  88. border-bottom-right-radius: 0;
  89. }
  90. }
  91. div.DTED_Lightbox_Close {
  92. top: 11px;
  93. right: 15px;
  94. }
  95. }
  96. }
  97. }
  98. }
  99. }
  100. @media only screen
  101. and (max-width: 780px) {
  102. div.DTED_Lightbox_Wrapper {
  103. position: fixed;
  104. top: 0;
  105. left: 0;
  106. width: 100%;
  107. margin-left: 0;
  108. }
  109. }