-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.css
63 lines (55 loc) · 1.05 KB
/
form.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
.contact-me {
text-align: center;
padding: 50px 0;
}
fieldset {
width: 80%;
margin: 0 auto;
border: none;
padding-top: 20px;
font-size: 20px;
}
.contact-form .form-group {
margin-bottom: 20px;
}
.contact-form label {
display: block;
margin-bottom: 5px;
font-size: 18px;
font-family: Arial, sans-serif;
color: #333;
}
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form textarea {
width: 100%;
padding: 10px;
border-radius: 5px;
border: 1px solid #ccc;
font-size: 16px;
font-family: Arial, sans-serif;
}
.contact-form select {
width: 100%;
padding: 10px;
border-radius: 5px;
border: 1px solid #ccc;
font-size: 16px;
font-family: Arial, sans-serif;
}
.contact-form textarea {
height: 150px;
}
.contact-form button {
padding: 10px 20px;
background-color: #333;
color: #fff;
border: none;
border-radius: 5px;
font-size: 18px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.contact-form button:hover {
background-color: #555;
}