blob: ef48d1cf8ba6469f648cd6f9a1e183aa5159e596 (
plain) (
blame)
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
|
#contact-form {
margin: 5% 1.4%;
}
#contact-form ul {
list-style: none;
border-radius: 5px;
margin-bottom: 40px;
}
#contact-form li {
padding: 10px;
}
#contact-form li:last-of-type {
border-bottom: none;
}
#contact-form label {
display: block;
font-size: .8em;
color: #999;
padding-left: 5px;
}
#contact-form input, #contact-form textarea {
width: 100%;
padding: 5px;
border: none;
resize: vertical;
background: transparent;
color: #fff;
font-weight: bolder;
}
input:focus {
outline: none;
border: none;
}
textarea:focus {
outline: none;
border: none;
}
.textarea {
border-bottom: 1px solid #dfdfdf;
}
.send {
margin-left: 50px;
text-transform: uppercase;
padding: 20px 30px;
background: transparent;
color: #dfdfdf;
font-size: 14px;
letter-spacing: 2px;
}
.send:hover {
background: #dfdfdf;
color: #101010;
}
@media(max-width: 768px) {
#contact-form {
margin: 5% -8%;
width: 98%;
}
}
|