-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform2.css
More file actions
44 lines (38 loc) · 682 Bytes
/
form2.css
File metadata and controls
44 lines (38 loc) · 682 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
body {
font-family: Arial, sans-serif;
background-image: linear-gradient(to right, #00b09b, #96c93d);
margin: 0;
}
form {
background-color: #ffffff;
border: 1px solid #cccccc;
padding: 20px;
margin: 20px auto;
width: 50%;
max-width: 600px;
}
h1 {
text-align: center;
}
label {
display: block;
margin-bottom: 10px;
}
input[type="text"],
input[type="email"],
input[type="tel"] {
width: 100%;
padding: 10px;
margin-bottom: 20px;
border: 1px solid #cccccc;
border-radius: 5px;
}
button[type="submit"] {
background-color: #4CAF50;
color: #ffffff;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
float: right;
}