-
Notifications
You must be signed in to change notification settings - Fork 0
/
estilos.css
88 lines (75 loc) · 1.38 KB
/
estilos.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
/* Estilos generales */
body {
font-family: Lato, sans-serif;
background: linear-gradient(to right, #ffffff, #87ceeb); /* Degradado de izquierda a derecha */
color: #87ceeb; /* Color celeste para el texto */
}
h1 {
text-align: center;
margin-top: 1em;
color: #00b5e2;
}
.contenedor {
max-width: 800px;
margin: 0 auto;
padding: 2em;
}
label {
display: block;
margin-top: 1em;
font-weight: bold;
color: #00b5e2;
}
input[type="text"],
input[type="date"],
input[type="number"],
textarea {
display: block;
width: 100%;
padding: 0.5em;
margin-top: 0.5em;
font-size: 1em;
border: 2px solid #ccc;
border-radius: 0.25em;
}
input[type="radio"] {
display: inline-block;
margin: 0.25em;
}
.radio-group label {
margin-right: 1em;
}
button[type="submit"],
input[type="reset"] {
display: block;
margin-top: 1em;
padding: 0.5em;
font-size: 1em;
background-color: #00b5
/* Estilos para el formulario */
#formulario {
display: flex;
flex-direction: column;
background-color: #0a5588; /* Color de fondo celeste claro */
padding: 2em;
}
label {
margin-top: 1.5em;
}
input[type="reset"] {
background-color: #BFBFBF;
color: #ffffff;
}
/* Estilos para los comentarios */
label[for="comentarios"] {
margin-top: 2em;
}
textarea {
height: 100px;
}
/* Estilos específicos para dispositivos móviles */
@media screen and (max-width: 480px) {
.contenedor {
padding: 1em;
}
}