-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (70 loc) · 1.55 KB
/
style.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/* Style for the form container */
form {
width: 800px;
margin: 0 auto;
background-color: #f8f8f8;
padding: 20px;
border-radius: 5px;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}
/* Style for the form title */
h2 {
text-align: center;
font-size: 36px;
color: #555;
margin-top: 0;
}
/* Style for the form fieldsets */
fieldset {
border: none;
margin: 0;
padding: 0;
}
/* Style for the form legends */
legend {
font-size: 24px;
font-weight: bold;
margin-bottom: 10px;
}
/* Style for the form labels */
label {
display: block;
margin-bottom: 10px;
font-size: 20px;
}
/* Style for the form inputs */
input[type="text"],
input[type="nombre"],
input[type="tel"],
input[type="email"],
select,
textarea {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 3px;
font-size: 16px;
margin-bottom: 15px;
}
/* Style for the form radio buttons and checkboxes */
input[type="radio"],
input[type="checkbox"] {
margin-right: 10px;
margin-bottom: 15px;
}
/* Style for the form submit and reset buttons */
input[type="submit"],
input[type="reset"] {
background-color: #4CAF50;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 3px;
font-size: 18px;
margin-top: 20px;
cursor: pointer;
}
input[type="submit"]:hover,
input[type="reset"]:hover {
background-color: #333;
}