-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContact.css
60 lines (50 loc) · 1.13 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
.container {
max-width: 400px;
margin: 0 auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
background-image: url(https://png.pngtree.com/thumb_back/fh260/background/20210324/pngtree-abstract-playful-portfolio-pink-memphis-image_593415.jpg);
text-align: center;
}
form {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
}
.label-input {
display: flex;
align-items: center;
margin-bottom: 10px;
}
label {
font-weight: bold;
width: 150px;
color: #1467c0;
}
input {
flex: 1;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
margin-left: 10px;
}
button {
background-color: #007BFF;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.2s;
}
button:hover {
background-color: #08305a;
}
h4 {
margin-top: 20px;
font-weight: bold;
color: #fff;
}