-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontact.css
80 lines (68 loc) · 1.02 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
#contact {
color: white;
padding: 50px 40px;
}
.contl {
flex-basis: 35%;
}
.contr {
flex-basis: 60%;
margin-top: 2em;
}
.contl p {
margin-top: 30px;
color: white;
}
.contl p i {
color: #0ddff2bb;
margin-right: 15px;
font-size: 25px;
}
.social {
margin-top: 30px;
}
.social a {
text-decoration: none;
font-size: 30px;
margin-right: 15px;
color: #ababab;
display: inline-block;
transition: transform 0.5s;
}
.social a:hover {
color: #0ddff2bb;
transform: translateY(-5px);
}
.btn.btn2 {
display: inline-block;
background: #0ddff2bb;
}
.contr form {
width: 100%;
}
form input,
form textarea {
width: 100%;
border: 0;
outline: none;
background: #262626;
padding: 15px;
margin: 15px 0;
color: #fff;
font-size: 18px;
border-radius: 6px;
}
form.btn2 {
padding: 14px 60px;
font-size: 18px;
margin-top: 20px;
cursor: pointer;
}
button {
background-color: #0ddff200;
font-family: sans-serif;
font-size: 18px;
color: white;
border: none;
cursor: pointer;
}