-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
96 lines (81 loc) · 1.54 KB
/
styles.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/* styles.css */
/* Estilos generales del formulario */
body {
font-family: Poppins, sans-serif;
}
.container {
max-width: 100%;
margin: 0 auto;
padding-right: 100px;
padding-left: 100px;
overflow-x: hidden;
}
@media only screen and (max-width: 768px) {
.container {
padding-right: 20px;
padding-left: 20px;
}
}
footer {
text-align: center;
}
/* Estilos para los títulos de sección */
h1 {
text-align: center;
margin-bottom: 0px;
}
h2 {
margin-bottom: 10px;
margin-top: 0px;
text-align: center;
}
h3 {
margin-bottom: 10px;
margin-top: 0px;
text-align: center;
}
p {
margin-bottom: 10px;
margin-top: 0px;
text-align: center;
}
/* Estilos para el formulario y sus campos */
form {
margin-top: 20px;
}
label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}
input,
select {
width: 100%;
padding: 8px;
margin-bottom: 10px;
}
i {
color: #7DC22B;
}
/* Estilos para los botones */
button {
padding: 10px;
background-color: #ffffff;
color: #7DC22B;
border-top: solid 2px #7DC22B;
border-bottom: solid 4px #7DC22B;
border-left: solid 2px #7DC22B;
border-right: solid 4px #7DC22B;
border-radius: 2px;
cursor: pointer;
font-family: Poppins, sans-serif;
font-weight: 600;
margin-top: 10px;
margin-bottom: 20px;
}
button:hover {
background-color: #7DC22B;
color:white;
}
/* Otros estilos específicos según tu formulario */
/* Agrega estilos adicionales según lo necesites */