Blame view

css/modal.css 1.14 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%;

b0159bc4   Eugeny Galkovskiy   modal styles and ...
62
      z-index: 99999;

ee3cea15   Alexey Boroda   first commit
63
64
65
66
  }

  .success_ .forms_wr_ {

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

  }