-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.css
More file actions
51 lines (45 loc) · 783 Bytes
/
Copy pathcontact.css
File metadata and controls
51 lines (45 loc) · 783 Bytes
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
/* Contact Page */
/* Form Styles */
form {
background: #1f1f1f;
padding: 20px;
border-radius: 10px;
max-width: 600px;
margin: 0 auto;
}
form label {
display: block;
margin-top: 15px;
color: #ffca28;
}
input,
textarea {
width: 100%;
padding: 12px;
margin-top: 10px;
background: #121212;
border: 1px solid #444;
color: white;
border-radius: 5px;
transition: 0.3s;
}
input:focus,
textarea:focus {
border-color: #ffca28;
outline: none;
}
button {
margin-top: 10px;
padding: 12px 20px;
background: #ffca28;
border: none;
color: black;
font-size: 16px;
cursor: pointer;
border-radius: 8px;
font-weight: bold;
transition: 0.3s;
}
button:hover {
background: white;
}