-
Notifications
You must be signed in to change notification settings - Fork 0
/
index-thank.html
72 lines (72 loc) · 2.55 KB
/
index-thank.html
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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Спасибо за заявку!</title>
<link rel="apple-touch-icon" sizes="180x180" href="img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffc555">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
@font-face {
font-family: 'Helvetica';
font-display: auto;
src: url("../fonts/HelveticaBold.woff2") format("woff2"), url("../fonts/HelveticaBold.woff") format("woff");
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: 'Helvetica';
font-display: auto;
src: url("../fonts/HelveticaRegular.woff2") format("woff2"), url("../fonts/HelveticaRegular.woff") format("woff");
font-weight: normal;
font-style: normal;
}
html, body { height: 100% }
body {
padding: 0 15px;
display: flex;
font-family: Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 1.33;
flex-direction: column;
justify-content: center;
overflow: hidden;
background: #fafafa url('img/thank.png') 50% 50% no-repeat;
background-size: cover;
}
.title {
margin: 0;
font-size: 24px;
font-weight: 700;
text-align: center;
color: #fff;
}
.subtitle {
margin: 15px 0 0;
text-align: center;
color: #fff;
}
@media (min-width: 768px) {
body { background-image: url('img/thank-t.png') }
.title { font-size: 40px }
.subtitle { font-size: 18px }
}
@media (min-width: 1025px) {
body { background-image: url('img/start-bg.png') }
.title { font-size: 56px; }
.subtitle {
margin-top: 25px;
font-size: 24px;
}
}
</style>
</head>
<body>
<h1 class="title">Спасибо, что оставили заявку!</h1>
<p class="subtitle">Дизайнер свяжется с вами в ближайшее время!</p>
</body>
</html>