Commit b3a1a1474cbab67aabb752c194a770b216cd8c33
1 parent
65675d57
Exists in
master
and in
79 other branches
Fix readmore css.
Showing
2 changed files
with
30 additions
and
18 deletions
Show diff stats
page-inicial.css
style.css
... | ... | @@ -439,7 +439,6 @@ p { |
439 | 439 | font-size: 10px; |
440 | 440 | text-align: right; |
441 | 441 | border-bottom: none; |
442 | - padding: 10px 8px 8px 8px; | |
443 | 442 | text-transform: uppercase; |
444 | 443 | font-family: "open_sans", Arial, Helvetica, sans-serif; |
445 | 444 | font-variant: normal; |
... | ... | @@ -447,7 +446,12 @@ p { |
447 | 446 | |
448 | 447 | #content .read-more a { |
449 | 448 | line-height: 20px; |
450 | - margin-left: 15px; | |
449 | + padding: 10px 8px 8px 8px; | |
450 | + display: block | |
451 | +} | |
452 | + | |
453 | +#content .read-more a:hover { | |
454 | + background: #dedede; | |
451 | 455 | } |
452 | 456 | |
453 | 457 | #content .box .read-more a::after { |
... | ... | @@ -475,7 +479,14 @@ p { |
475 | 479 | padding: 0 1em 0 0; |
476 | 480 | } |
477 | 481 | |
482 | +/* Bloco de busca pagina inicial*/ | |
483 | +#content .search-catalog-block h1 { | |
484 | + padding: 10px 10px 0 10px; | |
485 | +} | |
478 | 486 | |
487 | +#content .search-catalog-block form { | |
488 | + padding: 0 10px; | |
489 | +} | |
479 | 490 | |
480 | 491 | /**/ |
481 | 492 | |
... | ... | @@ -712,7 +723,7 @@ p { |
712 | 723 | |
713 | 724 | #content .display-content-block .title a { |
714 | 725 | background-color: transparent; |
715 | - font-size: 20px; | |
726 | + font-size: 16px; | |
716 | 727 | font-style: normal; |
717 | 728 | font-weight: bold; |
718 | 729 | line-height: 1em; |
... | ... | @@ -732,6 +743,22 @@ p { |
732 | 743 | line-height:21px; |
733 | 744 | font-family: Arial, Helvetica, sans-serif; |
734 | 745 | } |
746 | + | |
747 | +/* Numeracao dentro de artigos */ | |
748 | +.article-body ul { | |
749 | + list-style-position: inside; | |
750 | + list-style-type: disc; | |
751 | +} | |
752 | + | |
753 | +.article-body ol { | |
754 | + list-style-position: inside; | |
755 | + list-style-type: decimal; | |
756 | +} | |
757 | + | |
758 | +.article-body li { | |
759 | + list-style: inherit; | |
760 | +} | |
761 | + | |
735 | 762 | /* fim tamanho da fonte dentro dos artigos*/ |
736 | 763 | |
737 | 764 | |
... | ... | @@ -2783,17 +2810,3 @@ body.action-embed-index { |
2783 | 2810 | padding-right: 150px; |
2784 | 2811 | } |
2785 | 2812 | |
2786 | - | |
2787 | -.article-body ul { | |
2788 | - list-style-position: inside; | |
2789 | - list-style-type: disc; | |
2790 | -} | |
2791 | - | |
2792 | -.article-body ol { | |
2793 | - list-style-position: inside; | |
2794 | - list-style-type: decimal; | |
2795 | -} | |
2796 | - | |
2797 | -.article-body li { | |
2798 | - list-style: inherit; | |
2799 | -} | ... | ... |