-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontactSection.css
More file actions
76 lines (66 loc) · 1.2 KB
/
Copy pathcontactSection.css
File metadata and controls
76 lines (66 loc) · 1.2 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
* {
margin: 0;
padding : 0;
box-sizing : border-box;
font-family: "montserrat", sans-serif;
}
.contact-section {
background: #313840;
padding: 80px 0;
text-align: center;
}
.inner-width {
max-width: 600px;
margin: auto;
padding: 0 20px;
}
.contact-section h1 {
font-size : 20px;
color : #888;
margin-bottom : 40px;
text-transform: uppercase;
letter-spacing: 4px;
font-weight: 400;
}
.name, .email, .message {
background: none;
border : none;
outline: none;
border-bottom : 1px solid;
color : #888;
padding : 10px 6px;
font-size : 14px;
margin-bottom: 40px;
}
.name {
float: left;
width : 270px;
}
.email {
float: right;
width: 270px;
}
.message {
min-width: 100%;
max-width: 100%;
}
.contact-section button {
background: none;
color : #70a1ff;
border : 1px solid #70a1ff;
padding: 12px 40px;
border-radius: 8px;
text-transform: uppercase;
font-size: 14px;
transition : 0.4s linear;
cursor: pointer;
}
.contact-section button:hover{
background: #70a1ff;
color : #fff;
}
@media screen and (max-width: 600px){
.name, .email {
width : 100%;
}
}