-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
71 lines (65 loc) · 984 Bytes
/
Copy pathstyle.css
File metadata and controls
71 lines (65 loc) · 984 Bytes
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
*{
margin: 0;
padding: 0;
font-family:"montserrat",sans-serif;
}
.contact-section
{
background: url(./image/bj.jpg) no-repeat center;
background-size: cover;
padding: 100px 0;
}
.contact-section h1
{
text-align: center;
color: #ddd;
}
.border{
width: 100px;
height: 10px;
background: #95a5a6;
margin: 40px auto;
}
.contact-form
{
max-width: 600px;
margin: auto;
padding: 0 10px;
overflow: hidden;
}
.contact-form-text
{
display: block;
width: 100%;
box-sizing: border-box;
margin: 16px 0;
border: 0;
background: #111;
padding: 20px 40px;
outline: none;
color: #ddd;
transition: 0.5s;
}
.contact-form-text:focus
{
box-shadow: 0 0 10px 4px #95a5a6;
}
textarea.contact-form-text
{
resize: none;
height: 120px;
}
.contact-form-btn
{
float: right;
border: 0;
background: #95a5a6;
color: #fff;
padding: 12px 50px;
border-radius: 50px;
transition: 0.5s;
}
.contact-form-btn:hover
{
background: #1abc9c;
}