-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
79 lines (67 loc) · 1.43 KB
/
styles.css
File metadata and controls
79 lines (67 loc) · 1.43 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/* Reset de Estilos */
body, h1, h2, p, ul, li {
margin: 0;
padding: 0;
}
body {
background-color: #e0f7e9; /* Fondo verdoso claro */
color: #000000;
font-family: Arial, sans-serif;
}
form {
max-width: 800px;
margin: 0 auto;
padding: 30px;
background-color: #ffffff;
border: 1px solid #4CAF50; /* Borde verde */
border-radius: 5px;
}
h1, h2 {
color: #4CAF50; /* Color verde */
margin-bottom: 20px;
}
section {
margin-bottom: 20px;
}
label {
display: block;
margin-bottom: 5px;
color: #4CAF50; /* Color verde */
}
input[type="text"],
input[type="number"],
input[type="date"],
textarea {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #4CAF50; /* Borde verde */
border-radius: 3px;
box-sizing: border-box;
}
textarea {
resize: vertical; /* Permitir la redimensión vertical de textarea */
}
button {
background-color: #4CAF50; /* Fondo verde */
color: #ffffff;
padding: 12px;
margin-top: 10px;
border: none;
border-radius: 3px;
cursor: pointer;
width: 100%;
}
button:hover {
background-color: #66bb6a; /* Verde más claro al pasar el cursor */
}
button:active {
background-color: #388e3c; /* Verde más oscuro al hacer clic */
}
a {
color: #81c784; /* Verde claro para enlaces */
text-decoration: none;
}
a:hover {
color: #66bb6a; /* Verde más claro al pasar el cursor por enlaces */
}