-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpetition-style.css
More file actions
57 lines (50 loc) · 1.15 KB
/
petition-style.css
File metadata and controls
57 lines (50 loc) · 1.15 KB
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
/* petition-style.css */
.petition-form {
max-width: 500px;
margin: 20px auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
background-color: #f9f9f9;
}
.petition-form label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}
.petition-form input[type="text"],
.petition-form input[type="email"],
.petition-form input[type="tel"],
.petition-form select {
width: 100%;
padding: 8px;
margin-bottom: 20px;
border: 1px solid #ddd;
border-radius: 4px;
box-sizing: border-box; /* Added to include padding and border in the element's total width and height */
}
.petition-form button[type="submit"] {
background-color: #0056b3;
color: white;
padding: 10px 20px;
border: none;
border-radius: 50px;
cursor: pointer;
margin: 10px;
font-size: 24px;
text-align: center;
}
.petition-form button[type="submit"]:hover {
background-color: #004494;
}
.petition-field {
max-height: 70px;
}
.petition-field-names {
display: inline-block;
margin-right: 10px;
}
.petition-button-container {
text-align: center;
}