-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathma5pages.css
More file actions
60 lines (58 loc) · 1.01 KB
/
ma5pages.css
File metadata and controls
60 lines (58 loc) · 1.01 KB
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
*{
margin: 0;
padding: 0;
font-family: "montserrat",sans-serif;
}
.contact-section{
background: url(bg.jpg) no-repeat center;
background-size: cover;
padding: 40px 0;
}
.contact-section h1{
text-align: center;
color: #fff;
}
.border{
width: 100px;
height: 10px;
background: #fff;
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: #fff;
padding: 20px 40px;
outline: none;
color: #000;
transition: 0.5s;
}
.contact-form-text:focus{
box-shadow: 0 0 10px 4px #34495e;
}
textarea.contact-form-text{
resize: none;
height: 120px;
}
.contact-form-btn{
float: right;
border: 0;
background: crimson;
color: #fff;
padding: 12px 50px;
border-radius: 20px;
cursor: pointer;
transition: 0.5s;
}
.contact-form-btn:hover{
background: #2980b9;
}