-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
374 lines (350 loc) · 8.54 KB
/
main.css
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
/*
Сброс стилей
ссылка на исходник: https://medium.com/@stasonmars/современный-сброс-css-f5816963c82b
*/
/* Указываем box sizing */
*,
*::before,
*::after {
box-sizing: border-box;
}
/* Убираем внутренние отступы */
ul[class],
ol[class] {
padding: 0;
}
/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
margin: 0;
}
/* Выставляем основные настройки по-умолчанию для body */
body {
min-height: 100vh;
scroll-behavior: smooth;
text-rendering: optimizeSpeed;
line-height: 1.5;
}
/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
list-style: none;
}
/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
text-decoration-skip-ink: auto;
}
/* Упрощаем работу с изображениями */
img {
max-width: 100%;
display: block;
}
/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
margin-top: 1em;
}
/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
font: inherit;
}
/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
* {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
scroll-behavior: auto !important;
}
}
/* Подключаем шрифт */
@font-face {
font-family: "Barlow";
font-style: normal;
font-weight: 400;
src: url("./fonts/barlow/Barlow-Regular.otf") format("opentype")
}
body {
display: flex;
font-family: "Barlow";
font-weight: normal;
background-color: #EFF6FF;
color: #2A4A5C;
padding: 10px 40px;
}
header {
background-image: url(img/bg.jpg);
background-repeat: no-repeat;
padding: 30px;
flex: 0 1 50%;
}
header img {
width: 120px;
}
main {
padding: 90px 60px;
background-color: #fff;
flex: 0 1 50%;
}
p {
color: #7B8A92;
}
.btns {
display: flex;
justify-content: space-between;
}
.btn {
margin: 50px 0;
font-size: 16px;
border: none;
color: #fff;
padding: 5px 50px;
cursor: pointer;
}
.btn:hover{
outline: 1px solid #2A4A5C;
transition: all 0.3s ease 0s;
}
.btn_fb {
background-image: url(./img/facebook.svg);
background-repeat: no-repeat;
background-size: 20px;
background-position: 10px;
background-color: #255A9B;
width: 47%;
}
.btn_in {
background-image: url(./img/linkedin.svg);
background-repeat: no-repeat;
background-size: 20px;
background-position: 15px;
background-color: #0076B6;
width: 47%;
}
/* Для OR */
.line {
position: relative;
z-index: 1;
overflow: hidden;
text-align: center;
text-transform: uppercase;
font-size: 14px;
width: 50%;
margin: auto;
}
.line:before,
.line:after {
content: '';
display: inline-block;
width: 100%;
height: 1px;
background: #EEEEEE;
z-index: -1;
position: relative;
vertical-align: middle;
}
.line:before {
right: 15px;
margin: 0 0 0 -100%;
}
.line:after {
left: 15px;
margin: 0 -100% 0 0;
}
/* Стили полей для ввода почты и телефона */
.form {
display: flex;
justify-content: space-between;
margin-top: 50px;
}
.form__item {
width: 47%;
position: relative;
}
.form__field {
width: 100%;
padding: 18px 7px 7px 7px;
background: transparent;
transition: border-color 0.2s;
border: 0;
outline: 1px solid #eee;
}
.form__field::placeholder {
color: transparent;
}
.form__field:placeholder-shown ~ .form__label {
cursor: text;
top: 20px;
}
.form__label {
position: absolute;
top: 0;
left: 7px;
display: block;
font-size: 14px;
transition: 0.2s;
}
.form__field:focus {
padding-bottom: 7px;
border-left: 3px solid #3698FB;
padding-left: 4.5px;
}
.form__field:focus ~ .form__label {
position: absolute;
top: 0;
display: block;
transition: 0.2s;
}
/* reset input */
.form__field:required,.form__field:invalid {
box-shadow:none;
}
h2 {
margin-top: 50px;
}
.main__radio {
margin-top: 50px;
}
/* для элемента input c type="radio" */
.radio__field {
position: absolute;
z-index: -1;
opacity: 0;
}
/* для элемента label связанного с .radio__field */
.radio__field+label {
display: inline-flex;
align-items: center;
user-select: none;
}
/* создание в label псевдоэлемента before со следующими стилями */
.radio__field+label::before {
content: '';
display: inline-block;
width: 1em;
height: 1em;
flex-shrink: 0;
flex-grow: 0;
border: 3px solid #adb5bd;
border-radius: 50%;
margin-right: 0.5em;
}
/* стили при наведении курсора на радио */
.radio__field:not(:disabled):not(:checked)+label:hover::before {
border-color: #b3d7ff;
}
/* стили для активной радиокнопки (при нажатии на неё) */
.radio__field:not(:disabled):active+label::before {
/* background-color: #b3d7ff; */
border-color: #b3d7ff;
}
/* стили для радиокнопки, находящейся в фокусе */
.radio__field:focus+label::before {
/* box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); */
}
/* стили для радиокнопки, находящейся в фокусе и не находящейся в состоянии checked */
.radio__field:focus:not(:checked)+label::before {
border-color: #80bdff;
}
/* стили для радиокнопки, находящейся в состоянии checked */
.radio__field:checked+label::before {
border-color: #3698FB;
/* background-color: #0b76ef; */
/* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); */
}
/* стили для радиокнопки, находящейся в состоянии disabled */
.radio__field:disabled+label::before {
background-color: #e9ecef;
}
.info{
background-image: url(./img/info.svg);
background-repeat: no-repeat;
width: 30px;
height: 15px;
display: inline-block;
background-size: contain;
opacity: 0.3;
}
.info:hover ~ .tooltip {
opacity: 1;
transition: all 0.3s ease 0s;
}
.tooltip {
background: white;
display: inline-block;
opacity: 0;
width: 240px;
padding: 13px;
font-size: 14px;
box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
margin: 20px 0 40px;
transition: all 0.3s ease 0s;
}
.main__checkbox {
position: absolute;
z-index: -1;
opacity: 0;
}
.main__checkbox+label {
display: inline-flex;
align-items: center;
user-select: none;
}
.main__checkbox+label::before {
content: '';
display: inline-block;
width: 1em;
height: 1em;
flex-shrink: 0;
flex-grow: 0;
border: 1px solid #adb5bd;
border-radius: 0.25em;
margin-right: 0.5em;
background-repeat: no-repeat;
background-position: center center;
background-size: 80% 80%;
}
.main__checkbox:checked+label::before {
border-color: #0b76ef;
background-image: url(img/check.svg);
}
/* стили при наведении курсора на checkbox */
.main__checkbox:not(:disabled):not(:checked)+label:hover::before {
border-color: #b3d7ff;
}
/* стили для активного состояния чекбокса (при нажатии на него) */
.main__checkbox:not(:disabled):active+label::before {
background-color: #b3d7ff;
border-color: #b3d7ff;
}
/* стили для чекбокса, находящегося в фокусе */
.main__checkbox:focus+label::before {
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
/* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */
.main__checkbox:focus:not(:checked)+label::before {
border-color: #80bdff;
}
/* стили для чекбокса, находящегося в состоянии disabled */
.main__checkbox:disabled+label::before {
background-color: #e9ecef;
}
.form__submit {
background-color: #3698FB;
border-radius: 2px;
font-weight: bold;
}