Blame view

public/scss/blocks/form.scss 4.4 KB
b80175387   Андрей Ларионов   Начальный проект ...
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
  @import "../vars";
  @import "../mixins";
  
  .form {
      padding-top: 120px;
      position: relative;
  
      .form__bc {
          position: absolute;
          background-image: url("../img/product/form-min.png");
          background-repeat: no-repeat;
          background-size: cover;
          top: 120px;
          left: 0;
          width: 50%;
          height: 738px;
      }
  
      .form__container {
          display: flex;
          position: relative;
  
  
          .form__right {
              height: 738px;
              position: relative;
              z-index: 1;
              color: #fff;
  
              &-adresses {
                  display: flex;
                  margin-top: 52px;
  
                  &-col1 {
                      max-width: 229px;
                      width: 100%;
                      margin-right: 109px;
                      font-weight: 600;
                      font-size: 16px;
                      line-height: 22px;
                      color: #E7EAEE;
  
                      &-up {
                          margin-bottom: 20px;
                      }
  
                      .adresses-main {
                          // color: #E7EAEE;
                          max-width: 229px;
                          width: 100%;
                      }
  
                      .adresses-second {
                          color: #ABB2BF;
                      }
  
                      &-down {
                          max-width: 203px;
                          width: 100%;
                      }
  
                  }
  
                  &-col2 {
                      font-weight: 600;
                      font-size: 16px;
                      line-height: 22px;
                      // color: #E7EAEE;
                      max-width: 142px;
                      width: 100%;
  
                      .adresses-main {
                          // color: #ABB2BF;
                      }
  
                      .adresses-second {
                          display: flex;
                          flex-direction: column;
                          color: #ABB2BF;
                      }
                  }
              }
  
              &-title {
                  font-weight: 700;
                  font-size: 48px;
                  line-height: 100%;
                  color: #F7F7F9;
                  margin-top: 330px;
                  max-width: 368px;
                  width: 100%;
              }
          }
  
          .form__left {
              transform: translateX(27%);
              width: 50%;
  
              .right__form {
                  display: flex;
                  flex-direction: column;
                  padding-top: 60px;
                  padding-left: 107px;
                  width: 100%;
                  max-height: 632px;
                  height: 100%;
                  margin: 0 auto;
  
                  .form__label {
                      font-weight: 600;
                      font-size: 16px;
                      line-height: 22px;
                      color: $vmainGrey;
                      margin-bottom: 16px;
  
                      .required {
                          color: #F2994A;
                      }
                  }
  
                  &-input {
                      border: none;
                      border-bottom: 1px solid #ABB2BF;
                      height: 30px;
                      margin-bottom: 32px;
                  }
  
                  ::placeholder {
                      /* Chrome, Firefox, Opera, Safari 10.1+ */
                      color: #ABB2BF;
                      opacity: 1;
                  }
  
                  :-ms-input-placeholder {
                      /* Internet Explorer 10-11 */
                      color: #ABB2BF;
                  }
  
                  ::-ms-input-placeholder {
                      /* Microsoft Edge */
                      color: #ABB2BF;
                  }
  
                  .form__question {
                      height: 142px;
                      resize: none;
                  }
  
                  &-button {
                      @include btn-orange;
                      width: 100%;
                      height: 60px;
                      font-size: 16px;
  
                      &:hover {
                          @include btn-orange-hover;
                      }
                  }
              }
          }
  
          .line-bottom {
              position: absolute;
              bottom: 0px;
              right: 0px;
              width: 100%;
              border: 0.3px solid #BEC4CE;
              -webkit-transform: rotate(90deg);
              -ms-transform: rotate(90deg);
              transform: rotate(180deg);
              z-index: 2;
          }
      }
  }