-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
283 lines (219 loc) · 4.23 KB
/
styles.css
File metadata and controls
283 lines (219 loc) · 4.23 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
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
header {
position: relative;
}
.redes-sociales {
position: absolute;
top: 0;
right: 0;
display: flex;
margin: 10px;
}
.redes-sociales a {
margin-right: 10px;
}
nav {
position: relative;
top: 100%;
left: 0;
width: 100%;
height: 0;
overflow: hidden;
transition: height 0.4s ease-in-out;
background-color: #280e8600;
padding: 20px;
box-sizing: border-box;
}
nav.active {
height: 150px; /* Altura deseada */
}
nav ul {
margin: 0;
padding: 0;
list-style: none;
display: flex;
justify-content: center;
align-items: center;
height: 100%;
}
nav ul li {
margin-right: 20px;
}
nav ul li a {
text-decoration: none;
color: rgb(255, 255, 255);
}
/* en esta seccion se dara formato de tarjeta con sus efecto de animacion a las fotos de perfil */
.foto-miembro {
border: 1px solid #5125a3;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(69, 57, 172, 0.1);
padding: 10px;
/* Otros estilos adicionales para la tarjeta */
overflow: hidden; /* Para ocultar cualquier contenido que se salga de la tarjeta */
transition: transform 0.3s; /* Transición para la animación */
}
.foto-miembro img {
width: 100%;
height: auto;
border-radius: 50%;
transition: transform 0.3s; /* Transición para la animación */
}
.foto-miembro:hover {
transform: scale(1.2); /* Aumenta el tamaño en un 5% */
}
.foto-miembro:hover img {
transform: scale(1.5); /* Aumenta el tamaño en un 10% */
}
.card {
width: 300px;
background-color: #b37f7f80;
border-radius: 10px;
padding: 20px;
margin: 20px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.foto-miembro {
border-radius: 50%;
}
.capa {
margin-top: 20px;
}
h1{
color: antiquewhite;
}
h2{
color: antiquewhite;
}
h3 {
margin-bottom: 10px;
color: antiquewhite;
}
h4 {
margin-bottom: 5px;
color: antiquewhite;
}
p {
margin-bottom: 15px;
color: antiquewhite;
}
ul {
list-style-type: none;
padding: 0;
}
li {
display: inline-block;
margin-right: 10px;
}
a {
color: #000;
text-decoration: none;
}
.container {
display: flex;
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
/*en esta seccion se dara efecto de desplazamiento a la pagina con la opcion selecionada en el banner*/
html {
scroll-behavior: smooth;
}
/*aca le damos fondo a la pagina*/
body {
background-image: url('Imagenes/fondoweb\ \(2\).png');
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
backdrop-filter: blur(15px);
}
/*aca le damos animacion a el banner de navegacon*/
.nav ul li a {
transition: color 0.3s ease;
}
.nav ul li a:hover {
color: rgb(165, 84, 241); /* Cambia el color a tu preferencia */
font-size: 1.5em; /* Ajusta el valor para el nivel de agrandamiento deseado */
}
/*en esta seccion le damos efectos a los iconos de herramientas*/
.foto-miembro {
cursor: pointer;
}
.options {
display: none;
opacity: 0;
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease, opacity 0.3s ease;
}
.options.visible {
display: block;
opacity: 1;
max-height: 500px; /* Ajusta esta altura máxima según sea necesario */
}
.options ul {
list-style: none;
padding: 0;
margin: 0;
}
.options li {
padding: 5px 0;
}
contacto{
font-family: Arial, Helvetica, sans-serif;
min-height: 100vh;
display: flex;
align-items: center;
padding: 50px 55px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
border-radius: 20px;
text-align: center;
width: 340px;
}
.input-group{
display: flex;
flex-direction: column;
}
label{
color: 283629;
font-size: 15px;
font-weight: 600;
margin-bottom: 15px;
}
input, textarea {
padding: 17px 25px;
border-radius: 25px;
margin-bottom: 20;
background-color: #EDFFF0;
border: 2px solid #F0FAF1;
color: #283629;
outline: none;
}
input::placeholder, textarea::placeholder{
color: #b5cab6;
}
.form-txt {
margin-bottom: 30px;
display: flex;
justify-content: space-between;
text-align: center;
}
.form-txt a {
color: #76b28e;
font-size: 14px;
font-weight: 600;
text-decoration: none;
}
.btn{
font-size: 16px;
color: #FFFFFF;
border: 0;
border-radius: 25px;
background-color: #51D94C;
box-shadow: 0 0 20px rgba(25, 254, 0, 0.4);
cursor: pointer;
}
.btn:hover{
background-color: #12b10c;
}