-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
672 lines (560 loc) · 11.8 KB
/
style.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
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
/*
Theme Name: Proyecto Wordpress Theme
Theme URI: https://github.com/jlv-code/at.unearte
Author: José Viéitez
Author URI: http://jlvdesign.blogspot.com
Version: 1.0
License: GNU General Public License
*/
@import url(http://fonts.googleapis.com/css?family=Baumans);
* {
margin: 0;
padding: 0;
font-family: 'Baumans';
}
body {
margin: 0;
padding: 0;
font-family: 'Baumans';
font-size: 14px;
background-color: #ddd;
}
h1 {
color: #000;
font-size: 25px;
}
h2 {
color: #000;
font-size: 20px;
}
a,
a:link,
a:active,
a:visited {
color: #931f30;
text-decoration: none;
}
/* Estilos correspondientes a la cabecera del tema
*/
header#header {
display: inline-block;
width: 100%;
background-color: #fff;
border-bottom: 20px solid #AC192D;
}
header#header .inner-header {
position: relative;
margin: 0 auto;
width: 1000px;
height: 85px;
}
header#header .inner-header .logo-unearte {
display: inline-block;
width: 250px;
}
header#header .inner-header .logo-ciat {
display: inline-block;
margin-left: -3px;
}
header#header .inner-header .search-form {
position: absolute;
top: 0;
display: inline-block;
margin-top: 20px;
margin-left: 40px;
padding: 10px;
width: auto;
background-color: #eee;
border: 1px solid #ddd;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
header#header .inner-header .search-form form {
display: block;
}
header#header .inner-header .search-form form .inner-form {
display: block;
}
header#header .inner-header .search-form form .inner-form input[type="text"]{
display: block;
padding: 5px;
border: 1px solid #ddd;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
/* Estilos correspondientes al cuerpo del tema
*/
section#content {
display: inline-block;
margin-top: 1px;
width: 100%;
background-color: #ddd;
border-top: 1px solid #AC192D;
}
section#content .inner-content {
position: relative;
display: block;
margin: 0 auto;
width: 1000px;
min-height: 300px;
background-color: #fff;
}
/* Estilos correspondientes al Breadcrumb
*/
section#content .inner-content .breadcrumb {
display: inline-block;
margin: 10px 0;
width: 100%;
}
.breadcrumb span {
display: inline-block;
margin-left: 10px;
color: #555;
font-size: 14px;
}
.breadcrumb span a {
color: #555;
font-size: 14px;
}
.breadcrumb span a:hover {
color: #000;
}
/* Estilos correspondientes a las entradas en el Index.php
*/
section#content .inner-content .entries {
display: inline-block;
margin: 0;
padding-top: 10px;
width: 730px;
border-top: 1px solid #AC192D;
}
.entries .entry {
display: inline-block;
margin-top: 10px;
width: 100%;
background-color: #eee;
border-top: 10px solid #AC192D;
}
.entry .header-entry {
display: block;
}
.entry .header-entry h1 {
margin-top: 5px;
margin-left: 10px;
margin-bottom: 10px;
font-weight: normal;
}
.entry .header-entry h1 a {
display: block;
margin-right: 10px;
color: #000;
text-decoration: none;
}
.entry .header-entry h1 a:hover {
color: #555;
}
.entry .section-entry {
position: relative;
display: block;
margin-left: 10px;
margin-right: 10px;
}
.entry .section-entry .categories-entry {
display: block;
margin-bottom: 10px;
}
.entry .section-entry .categories-entry ul.post-categories {
display: block;
list-style: none;
}
.entry .section-entry .categories-entry ul.post-categories li {
display: inline-block;
margin-right: 10px;
list-style: none;
}
.entry .section-entry .categories-entry ul.post-categories li a {
display: inline-block;
color: #aaa;
text-transform: lowercase;
text-decoration: none;
}
.entry .section-entry .thumbnail-entry {
display: inline-block;
width: 150px;
height: 150px;
border-top: 5px solid #AC192D;
border-bottom: 5px solid #AC192D;
}
.entry .section-entry .thumbnail-entry img {
margin: 0;
padding: 0;
width: 150px;
height: 150px;
}
.entry .section-entry .data {
position: absolute;
top: 25px;
display: inline-block;
margin-left: 15px;
width: 545px;
}
.entry .section-entry .data .tags-entry {
display: block;
margin-bottom: 5px;
}
.entry .section-entry .data .tags-entry a {
display: inline-block;
padding: 3px 5px;
background-color: #ddd;
}
.entry .section-entry .data .content-entry {
display: block;
}
.entry .section-entry .data .content-entry p {
display: block;
color: #555;
font-size: 14px;
text-align: justify;
}
.entry .footer-entry {
display: inline-block;
margin: 5px 0;
width: 100%;
}
.entry .footer-entry .readmore {
display: inline-block;
width: 100%;
}
.entry .footer-entry .readmore a {
padding: 5px 0 0 10px;
width: 90px;
height: 25px;
float: right;
color: #fff;
font-size: 16px;
background-image: url(images/readmore.png);
background-repeat: no-repeat;
}
.entry .footer-entry .readmore a:hover {
color: #aaa;
}
/* Estilos correspondientes al pie de página del tema
*/
.entries .entries-nav {
display: block;
margin: 20px 0;
}
.entries .entries-nav .nav-next,
.entries .entries-nav .nav-previous {
display: inline-block;
}
.entries .entries-nav .nav-next a,
.entries .entries-nav .nav-previous a {
display: block;
height: 25px;
color: #fff;
font-size: 14px;
background-repeat: no-repeat;
}
.entries .entries-nav .nav-next a {
padding: 6px 32px 0 25px;
background-image: url(images/next.png);
}
.entries .entries-nav .nav-previous a {
padding: 6px 28px 0 32px;
background-image: url(images/previous.png);
}
/* Estilos correspondientes al Single Post
*/
section#content .inner-content .single-entry {
display: inline-block;
margin: 0;
padding-top: 10px;
width: 730px;
border-top: 1px solid #AC192D;
}
.single-entry .entry {
display: inline-block;
margin-top: 10px;
width: 100%;
background-color: #eee;
border-top: 10px solid #AC192D;
}
.single-entry .entry .header-entry {
display: block;
margin-bottom: 20px;
border-bottom: 1px solid #ccc;
}
.single-entry .entry .header-entry h1 {
margin-top: 5px;
margin-left: 10px;
margin-bottom: 10px;
font-weight: normal;
}
.single-entry .entry .header-entry h1 a {
display: block;
margin-right: 10px;
color: #000;
text-decoration: none;
}
.single-entry .entry .section-entry {
margin-left: 10px;
margin-right: 10px;
float: left;
}
.single-entry .entry .section-entry aside.sidebar-entry {
margin-right: 10px;
margin-bottom: 10px;
float: left;
width: 250px;
}
.single-entry .entry .section-entry aside.sidebar-entry img {
display: block;
width: 250px;
}
.single-entry .entry .section-entry aside.sidebar-entry .categories-entry {
display: block;
margin: 1px 0 0 0;
background-color: #ddd;
}
.single-entry .entry .section-entry aside.sidebar-entry .categories-entry span {
display: block;
padding: 5px;
}
.single-entry .entry .section-entry aside.sidebar-entry .categories-entry ul {
display: block;
padding: 0 5px 5px 5px;
}
.single-entry .entry .section-entry aside.sidebar-entry .categories-entry ul li {
display: inline-block;
list-style: none;
}
.single-entry .entry .section-entry aside.sidebar-entry .categories-entry ul li a {
display: inline-block;
padding: 2px 5px;
color: #555;
background-color: #cdcdcd;
}
.single-entry .entry .section-entry aside.sidebar-entry .tags-entry {
display: block;
margin: 1px 0 0 0;
padding: 0 5px 5px 5px;
background-color: #ccc;
}
.single-entry .entry .section-entry aside.sidebar-entry .tags-entry span {
display: block;
padding: 5px;
}
.single-entry .entry .section-entry aside.sidebar-entry .tags-entry a {
display: inline-block;
padding: 2px 5px;
color: #777;
background-color: #fff;
}
.single-entry .entry .section-entry .content-entry {
float: left;
width: 450px;
}
.single-entry .entry .section-entry p {
width: auto;
font-size: 14px;
text-align: justify;
}
.single-entry .entry .footer-entry {
display: block;
margin: 20px 0 0 0;
float: left;
}
/*.single-entry .entry .footer-entry .categories-entry {
display: block;
padding: 10px;
background-color: #ddd;
}
.single-entry .entry .footer-entry .categories-entry span {
margin-right: 10px;
color: #555;
font-size: 14px;
}
.single-entry .entry .footer-entry .categories-entry ul {
display: inline-block;
list-style: none;
}
.single-entry .entry .footer-entry .categories-entry ul li {
display: inline-block;
list-style: none;
}
.single-entry .entry .footer-entry .categories-entry ul li a {
display: inline-block;
padding: 2px 5px;
background-color: #cdcdcd;
}
.single-entry .entry .footer-entry .tags-entry {
display: block;
padding: 10px;
background-color: #dfe278;
}
.single-entry .entry .footer-entry .tags-entry span {
margin-right: 10px;
color: #555;
font-size: 14px;
}
.single-entry .entry .footer-entry .tags-entry a {
display: inline-block;
padding: 2px 5px;
background-color: #babc6e;
}*/
/* Estilos correspondientes a la Busqueda
*/
section#content .inner-content .entries-search {
display: inline-block;
margin: 0;
padding-top: 10px;
width: 730px;
border-top: 1px solid #AC192D;
}
.entries-search .entry {
display: inline-block;
margin-bottom: 20px;
padding: 10px;
width: 710px;
background-color: #eee;
border-top: 10px solid #AC192D;
}
.entries-search .entry h1 {
display: inline-block;
}
.entries-search .entry h1 a {
color: #555;
}
.entries-search .entry h1 a:hover {
color: #000;
}
.entries-search .entry .readmore {
margin: 5px 0;
padding: 5px;
background-color: #ddd;
text-align: center;
}
/* Estilos correspondientes al Sidebar del Index.php
*/
section#content .inner-content aside.sidebar {
position: absolute;
top: 0;
display: inline-block;
margin-top: 37px;
margin-left: 20px;
width: 250px;
}
aside.sidebar .widgets-sidebar {
display: block;
border-top: 1px solid #AC192D;
width: 250px;
}
aside.sidebar .widgets-sidebar h2 {
display: block;
padding: 5px 5px 5px 25px;
font-weight: normal;
background-image: url(images/widgets-sidebar-title.png);
background-repeat: no-repeat;
background-position: left 7px;
border-bottom: 1px solid #AC192D;
}
aside.sidebar .widgets-sidebar .textwidget {
display: block;
}
aside.sidebar .widgets-sidebar ul {
display: block;
list-style: none;
}
aside.sidebar .widgets-sidebar ul li {
display: block;
margin-bottom: 1px;
list-style: none;
background-color: #e3c1b3;
}
aside.sidebar .widgets-sidebar ul li:hover {
background-color: #dda594;
}
aside.sidebar .widgets-sidebar ul li a {
display: block;
padding: 5px 5px 5px 20px;
font-size: 15px;
background-image: url(images/widgets-sidebar-ul.png);
background-repeat: no-repeat;
background-position: left 6px;
}
aside.sidebar .widgets-sidebar ul li ul {
display: block;
}
aside.sidebar .widgets-sidebar ul li ul li {
display: block;
}
aside.sidebar .widgets-sidebar ul li ul li:hover {
background-color: #e1d4d2;
}
aside.sidebar .widgets-sidebar ul li ul li a {
display: block;
padding: 5px 5px 5px 30px;
font-size: 15px;
background-image: url(images/widgets-sidebar-ul.png);
background-repeat: no-repeat;
background-position: 15px 6px;
}
/* Estilos correspondientes al pie de página del tema
*/
footer#footer {
display: inline-block;
width: 100%;
}
footer#footer .inner-footer {
display: block;
margin: 0 auto;
width: 1000px;
height: 100px;
background-color: #AC192D;
}
footer#footer .inner-footer .condition {
margin-top: 35px;
margin-left: 20px;
float: left;
width: 225px;
}
footer#footer .inner-footer .condition p {
display: inline-block;
color: #fff;
}
footer#footer .inner-footer .address {
margin-top: 35px;
margin-left: 190px;
float: left;
width: 260px;
}
footer#footer .inner-footer .address p {
display: inline-block;
color: #fff;
text-align: right;
}
footer#footer .inner-footer .copyright {
margin-top: 25px;
margin-left: 20px;
padding: 3px 0 3px 20px;
float: left;
width: 260px;
border-left: 1px solid #fff;
}
footer#footer .inner-footer .copyright p {
display: block;
}
footer#footer .inner-footer .copyright p.year {
color: #fff;
font-size: 16px;
}
footer#footer .inner-footer .copyright p.institution {
color: #fff;
}
footer#footer .inner-footer .copyright p.rights {
color: #aaa;
font-size: 11px;
}