Blame view

frontend/web/css/modal.css 1.27 KB
c237629a   Anastasia   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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
  .forms_ {
      z-index: 10050;
      display: none;
      position: fixed;
      width: 100%;
      height: 100%;
      overflow-y: scroll;
      top: 0;
      left: 0;
      padding-bottom: 120px;
  }
  #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%;
  }
  .success_ .forms_wr_ {
      box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.34);
  }
  
  @media (max-width: 600px) {
      .forms_wr_ {
          width: 100%;
          border-radius: 4px;
          top: 0;
          margin-left:0;
          left:0;
          position:relative;
          background: #fff;
          margin-bottom: 120px;
          margin-top: 30px;
          z-index: 2;
      }
  }