-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathestilos.css
151 lines (129 loc) · 3.28 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
.midivHeader {
background-position: right;
background-image: url("Calculadora Gestión Riesgo I.jpg");
background-size: contain;
min-height: 167px;
background-repeat: no-repeat;
margin-right: 5%;
border-radius: 100px;
}
.midivHeader h1,
.midivHeader h2 {
background-color: floralwhite;
border-radius: 100px;
width: 33%;
text-align: center;
margin-left: 5%;
}
body {
font-family: 'Source Sans Pro', sans-serif;
}
.formulario {
color: darkred;
background: #ADA996;
/* fallback for old browsers */
background: -webkit-linear-gradient(to bottom, #EAEAEA, #DBDBDB, #F2F2F2, #ADA996);
/* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to bottom, #EAEAEA, #DBDBDB, #F2F2F2, #ADA996);
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.formularioOnlyRead {
color: whitesmoke;
background: #22c1c3;
/* fallback for old browsers */
background: -webkit-linear-gradient(to bottom, #fdbb2d, #22c1c3);
/* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to bottom, #fdbb2d, #22c1c3);
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
width: 45%;
}
label {
font-size: 1.5em;
width: 100%;
}
.container {
max-width: 90%;
margin-top: 0;
border: solid;
border-color: black;
display: flex;
justify-content: space-between;
text-align: center;
margin-left: 67px;
}
form label,
form input {
display: inline-block;
margin-right: 10px;
/* ajusta el margen según tus preferencias */
}
form input {
display: inline-block;
margin-left: 10px;
margin-right: 10px;
width: 15%;
/* ajusta el ancho según tus preferencias */
padding: 5px;
/* agrega un poco de espacio interno para mejorar la legibilidad */
border: 1px solid #ccc;
/* agrega un borde para separar visualmente los campos */
line-height: 2em;
}
button {
display: inline-block;
margin-top: 10px;
padding: 10px 20px;
border: none;
border-radius: 5px;
font-size: 16px;
font-weight: bold;
color: #fff;
background-color: #4CAF50;
cursor: pointer;
}
button[type="reset"] {
background-color: #f44336;
}
button:hover {
background-color: #3e8e41;
}
button:active {
background-color: #2f6527;
}
.formularioOnlyRead input {
background-color: black;
color: ghostwhite;
font-weight: 900;
width: 45%;
}
input[type="number"] {
border-radius: 20px;
}
.boton-glow {
background-color: #4CAF50;
/* Cambia esto por el color de fondo de tu botón */
color: white;
/* Cambia esto por el color del texto de tu botón */
border: none;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
border-radius: 5px;
box-shadow: 0 0 10px #4CAF50;
/* Ajusta esto al color de tu botón */
animation: glow 1s ease-in-out infinite alternate;
}
@keyframes glow {
from {
box-shadow: 0 0 10px #4CAF50;
}
to {
box-shadow: 0 0 20px #4CAF50;
}
}
.misdivs {
background-color: floralwhite;
text-align: center;
}