Blame view

css/modal.css 1.38 KB
ee3cea15   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
  .off-scroll{

  	overflow-y:hidden;

  }

  .forms_ {

      z-index: 10050;

      display: none;

      position: absolute;

      width: 100%;

      height: 100%;

      overflow-y: scroll;

      top: 0;

      left: 0;

      padding-bottom: 120px;

      margin-top: -80px;

  }

  #success_form, .forms_ {

      display: none;

      z-index: 10050;

  }

  .forms_wr_ {

      position: absolute;

      width: 555px;

      border-radius: 4px;

      left: 50%;

      margin-left: -277px;

      top: 0;

      background: #fff;

      margin-bottom: 120px;

      margin-top: 30px;

      z-index: 2;

  }

  .modal-body {

      padding: 20px 30px;

      margin: 0 auto;

  }

  #overlay {

      position: fixed;

      width: 100%;

      height: 100%;

      background: #000;

      top: 0;

      left: 0;

      z-index: 10000;

      opacity: .9;

      cursor: pointer;

      display: none;

  }

  .overlay-new {

      width: 100%;

      height: 100%;

      cursor: pointer;

      position: absolute;

      top: 0;

      left: 0;

      z-index: 1;

  }

  .success_ {

      position: fixed;

      display: none;

      left: 0;

      width: 100%;

2f083e2c   Eugeny Galkovskiy   modal styles and ...
62
      z-index: 10049;

fb15ac0e   Eugeny Galkovskiy   modal style
63
      top:0!important;

ee3cea15   Alexey Boroda   first commit
64
65
66
  }

  .success_ .forms_wr_ {

      box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.34);

a57c0c92   Eugeny Galkovskiy   modal success sty...
67
68
69
70
71
72
73
74
75
76
77
78
  }

  @media(max-width:575px){

      .forms_wr_, #success-modal .forms_wr_{

          width: 100%;

          left: 0;

          margin: 0;

          border-radius: 0;

      }

      #success-modal {

          top: 0;

          margin: 0;

      }

ee3cea15   Alexey Boroda   first commit
79
  }