-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.css
114 lines (100 loc) · 1.8 KB
/
contact.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
@charset "UTF-8";
.header.header-contact {
background: url(../img/contact/hero_contact.jpg) no-repeat center center/cover;
}
.wrapper {
max-width: 960px;
margin: 0 auto;
padding: 0 4%;
}
.section-contact {
padding: 30px 0 50px;
}
@media print, screen and (min-width: 768px) {
.section-contact {
padding: 60px 0 100px;
margin: 0 auto;
}
}
.lead {
margin-bottom: 30px;
}
@media print, screen and (min-width: 768px) {
.lead {
margin: 0 auto;
width: 600px;
text-align: center;
margin-bottom: 60px;
}
}
.select, input[type="text"], textarea {
-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
width: 100%;
height: 43px;
padding: 0 10px;
border: 1px solid #000;
border-radius: 0;
background: #fff;
font-size: 1.6rem;
line-height: 43px;
}
.selectbox-wrap {
position: relative;
width: 240px;
height: 43px;
z-index: 1;
}
.selectbox-wrap::after {
content: "";
display: block;
width: 14px;
height: 12px;
background: url(../img/contact/icon_select.png) no-repeat center center/cover;
position: absolute;
top: 50%;
margin-top: -6px;
right: 15px;
z-index: 10;
}
.form-block {
margin-bottom: 25px;
}
@media print, screen and (min-width: 768px) {
.form-block {
width: 600px;
margin: 0 auto 30px;
}
}
.form-title {
font-size: 1.4rem;
margin-bottom: 10px;
}
.form-title span {
display: inline-block;
font-size: 1.0rem;
color: #f32938;
margin-left: 8px;
}
.textarea {
height: 97px;
line-height: 1.5;
padding: 10px;
}
.submit-btn {
display: block;
-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
border: none;
cursor: pointer;
padding: 0px;
background: #000;
color: #fff;
font-size: 1.4rem;
width: 116px;
height: 43px;
line-height: 43px;
margin: 0 auto;
}