-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstylerj.css
468 lines (369 loc) · 13.1 KB
/
stylerj.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
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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
/*---------------------- Estilo General para formatear los margenes del Documento ----------------------*/
*{
margin: 0px; /* Margenes externos en 0px */
padding: 0px; /* Margenes internos en 0px */
}
/*---------------------- Importar Fuentes ---------------------*/
/* Fuente de Texto Normal */
@font-face {
font-family: 'BebasNeue'; /* Nombre que va tener la Fuente */
src: url('fonts/BebasNeue.otf'); /* URL de la Fuente */
font-weight: normal; /* Grosor de la Fuente */
font-style: normal; /* Estilo de la Fuente */
}
/* Fuente de Iconos */
@font-face {
font-family: "WebSymbolsRegular"; /* Nombre que va tener la Fuente */
src: url('fonts/websymbols-regular-webfont.eot'); /* URL de la Fuente */
src: url('fonts/websymbols-regular-webfont.eot?#iefix') format('embedded-opentype'), /* URL de la Fuente */
url('fonts/websymbols-regular-webfont.woff') format('woff'), /* URL de la Fuente */
url('fonts/websymbols-regular-webfont.ttf') format('truetype'), /* URL de la Fuente */
url('fonts/websymbols-regular-webfont.svg#WebSymbolsRegular') format('svg'); /* URL de la Fuente */
font-weight: normal; /* Grosor de la Fuente */
font-style: normal; /* Estilo de la Fuente */
}
/*---------------------- Estilos Generales ----------------------*/
h1{ /* Selector de Etiqueta */
color: gray;
}
#h1{ /* Selector de Id */
color: gray;
}
.h1{ /* Selector de Clase */
color: gray;
}
/* ---------------------- Estilos de un Contenedor ---------------------- */
.wrap{
width: 1200px; /* Tamaño del Contenedor */
margin: 0px auto; /* Centrar el Contenedor */
}
.clearfix{ /*Eliminar flotados*/
float: none;
clear: both; /*Limpiar todos con este atributo*/
}
/* ---------------------- Atribitos y condiciones de las fuentes y otros ---------------------- */
h1{
color: white; /* Cambia el Color de tecto o icono */
color: gray !important; /* Darle importancia a esta regla sobre todo */
background: gray; /* Cambia color de Fondo */
background-image: url(../img/bakbaner.png);
background-position: -200px -200px;
font-size: 18px; /* Tamaño de Fuente */
font-weight: 500; /* Grosor de Fuente */
font-family: sans-serif; /* Familia de Fuente */
font-style: normal; /* Estilo de Fuente */
text-align: center; /* Alinear el texto */
text-decoration: none; /* Eliminar decoracion en texto (Enlaces) o usar el underline para agregar subrayado*/
text-transform: uppercase; /* Transformar fuente Minusculas o Mayusculas */
text-shadow: 1px 1px 2px black; /* Sombra en Texto X Y Grosor Color*/
text-indent: 20px; /* Generar un espacio antes de cada parrafo */
word-spacing: 10px; /* Generar espacio entre palabras*/
letter-spacing: 5px; /* Generar espacios entre letras*/
line-height: 50px; /* Ajustar el espacio entre lineas*/
width: 300px; /* Tamaño Horizontal del elemento */
min-width: 500px; /* Tamaño Minimo de ancho */
max-width: 1400px; /* Tamaño Maximo de ancho */
height: 200px; /* Tamaño Vertical del elemento */
min-height: 500px; /* Tamaño Minimo de alto */
max-height: 1400px; /* Tamaño Maximo de alto */
margin: 10px; /* Margen Externo del texto, imagen o lo que sea */
margin: 10px auto; /* Margen de 10px top y centrar */
margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
margin: 15px 15px 15px 15px; /* Top Right Botton Left */
padding: 10px; /* Margen Interno del texto, imagen o lo que sea */
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
padding: 15px 15px 15px 15px; /* Top Right Botton Left */
border: 1px solid black; /* Agregar borde Tamaño Tipo y Color */
box-shadow: 0px 0px 15px black; /* Sombras Horizontal Vertical Difuminado y Color*/
border-radius: 30px 10px 4px 60px; /* Sup iz, sup der, inf der, inf iz*/
border-radius: 50%;
border-radius: 30px;
display: block; /* Trabajar el elemnto como un bloque */
float: left; /* Flotar las cajas para que se muevan en una direccion junstas */
cursor: pointer; /* Hacer efecto de cursor de mano en el puntero*/
position: absolute; /*Posicion absoluta que pasa por encima de cualquier elemento*/
top: 10%;
left: 0px;
z-index: 1; /*Relevancia de elementos para saber cual va encima, mientras mas alto el indice va arriba del todo*/
position: fixed; /* Posicio fijada donde se sigue el scroll de la pagina*/
top: 50%;
left: 0px;
z-index: 2;
overflow: scroll;
overflow-y: scroll; /* scroll en casilla de texto*/
overflow-x: hidden;
overflow: hidden; /* todo lo que se salga fuera del item no se ve */
}
/*----------------------Colores ----------------------*/
h1{
/* Colores del sistema */
color: mediumpurple;
/* Colores del hexadecimales*/
color: #000000;
/* Colores del RGB */
color: rgb(255, 255, 255);
/* Colores del RGBA */
background: rgb(255, 160, 122, 0.3);
}
/*--------------------- Formularios ---------------------*/
input[type="text"],
input[type="email"],
input[type="password"],
select{
border: 1px solid #c9c9c9;
padding: 1px;
padding-bottom: 2px;
padding-top: 2px;
color: gray;
transition: all 300ms;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
select{
border: 1px solid #70b231;
color: black;
}
input[type="button"],
input[type="submit"],
input[type="reset"],
button{
display: block;
border-radius: 2px;
border: 1px solid #70b231;
width: 60px;
padding: 3px;
background-color: #70b231;
color: white;
cursor: pointer;
}
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
button{
box-shadow: 0px 0px 2px gray;
}
/*--------------------- Pseudoclases : algo ---------------------*/
ul li{
font-size: 20px;
}
ul li:first-child{ /* Seleccionar el primer hijo de la lista*/
color: indigo;
font-weight: bold;
}
ul li:nth-child(2){ /*Seleccionar un elemento especifico de la lista*/
color: orangered;
font-weight: bold;
}
ul li:last-child{ /* Seleccionar el ultimo hijo de la lista*/
color: green;
font-weight: bold;
}
#enlace{
font-size: 25px;
color: red;
}
#enlace:link{ /*Cuando no he visitado enlace*/
color: grey;
}
#enlace:visited{ /*Cuando ya he visitado el enlace*/
color: black;
}
#enlace:hover{ /*Cuando se pasa el cursor por encima cambia el color*/
color: brown;
transform: scale(1.2,1.2); /* Hace mas grandes las letras mientras se aplique el efecto*/
}
#enlace:active{ /*Cuando seleccionamos el enlace*/
color: green;
font-family: Georgia, 'Times New Roman', Times, serif;
}
input:focus{ /*Para dar estilos cuando estemos trabajando en algo*/
border: 4px dashed grey;
}
/*--------------------- Animaciones ---------------------*/
#boton{
display: block;
padding: 10px;
background-color: black;
color: white;
width: 300px;
height: 50px;
text-align: center;
text-transform: uppercase;
text-decoration: none;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-weight: bold;
font-size: 20px;
line-height: 40px;
border: 10px solid green;
transition: all 500ms;
}
#boton:hover{
background-color: honeydew;
color: green;
border: 10px solid green;
border-radius: 10px;
}
#caja{
background-color: green;
color:white;
border: 3px solid black;
width: 200px;
height: 200px;
margin-top: 30px;
text-align: center;
animation-name: desplazamiento; /*Nombre de la animación*/
animation-duration: 10s; /*Tiempo de duracion*/
animation-iteration-count: infinite; /*veces cuanto se va repetie la animacion*/
animation-timing-function: linear; /*Siemore va tener la misma velocidad*/
}
@keyframes desplazamient{ /* Desplazar algo desde el 0px a 1200px*/
from{
margin-left: 0px;
}
to{
margin-left: 1200px;
}
}
@keyframes desplazamiento{ /* Desplazar e ir rotando desde 0px a 1000px a 0px*/
0%{
margin-left: 0px;
transform: rotate(0deg);
}
50%{
margin-left: 1000px;
transform: rotate(360deg);
border-radius: 50%;
}
100%{
margin-left: 0px;
transform: rotate(0deg);
}
}
#logo .gear{ /* Estilos del Engranaje */
display: block; /* Para que se comporte como un bloque */
float: left; /* Flotar el Elemento hacia la izquierda */
font-size: 30px;
margin-top: 8px;
margin-left: 25px;
animation-name: rotate-gear;
animation-duration: 2s;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
@keyframes rotate-gear{
from{
transition: rotateZ(0deg);
}
to{
transform: rotateZ(360deg);
}
}
#logo:hover .gear{
animation: fromBellow 500ms linear;
}
@keyframes fromBellow{
0%{
transform: translateY(0%);
}
50%{
transform: translateY(200%);
}
100%{
transform: translateY(0%);
}
}
/*--------------------- Responsive ---------------------*/
/* Desde la anchura 0px hasta la 888px */
@media (max-width: 888px){
#articles article{
width: 40%;
background-color: red;
}
}
@media (max-width: 645px){
#container{
overflow: hidden;
}
aside{
float: none;
width: 100%;
min-height: 40px;
line-height: 40px;
}
#articles{
width: 100%;
}
#articles article{
width: 90%;
background-color: blue;
}
}
@media (max-width: 645px){
body{
background-color: grey;
}
#articles article{
width: 90%;
background-color: green;
}
}
/*--------------------- Flexbox ---------------------*/
#layout{
display: flex; /* Agregar Flexvox a la caja principal*/
flex-direction: row; /* ordenar por columnas y que no se salgan del contenedor*/
flex-wrap: wrap;
flex-flow: row wrap; /* ordenar por columnas y que no se salgan del contenedor*/
/*Horizontal*/
justify-content: center; /* ordenar Contenido al Centro pegado*/
justify-content: space-between; /* ordenar Contenido centrado pero con espacios*/
justify-content: space-evenly;
justify-content: space-around;
justify-content: flex-start; /* ordenar Contenido al Inicio*/
justify-content: flex-end; /* ordenar Contenido al Final*/
/*Vertical*/
align-items: center; /*Alinear Items al Centro*/
align-items: baseline; /*Alinear Items Top*/
align-items: flex-start;
align-items: flex-end;
border: 3px solid black;
padding: 5px;
}
.caja{
flex-grow: 1; /*Todas las cajas van a tener el mismo espacio y rellenan toda la caja*/
flex-basis: calc((100% / 3) - 68px); /*Agregar un tamaño minimo*/
font-size: 20px;
font-weight: bold;
text-align: center;
color: white;
padding: 20px;
border: 4px solid #222222;
margin: 10px;
background: grey;
}
/*--------------------- Grid Layout ---------------------*/
.layout{
width: 1200px;
height: 400px;
margin: 0px auto;
display: grid; /* Inicializar Grid de los estilos */
grid-gap: 10px; /* Dar margenes entre elementos Grid */
grid-template-columns: 1fr 1fr; /* Agregar tamaños a las columnas*/
grid-template-columns: repeat(4, 1fr);
grid-template-rows: 1fr 1fr 1fr; /* Agregar tamaños a filas*/
grid-column-start: 1; /*Empezar en una columna y terminar en otra*/
grid-column-end: 3;
grid-column: 1 / 3;
grid-row: 1 / 3; /*EMpezar una fila y terminar en otra*/
grid-template-areas:
"cabecera cabecera cabecera cabecera cabecera"
"menu menu menu menu menu"
"contenido contenido contenido contenido lateral"
"footer footer footer footer footer";
}