Commit 493b74999d023360f47f4beaa8b318708a494145

Authored by Gustavo Cruz
1 parent 85a22ad5

updating theme

Showing 1 changed file with 41 additions and 0 deletions   Show diff stats
style.css
... ... @@ -551,6 +551,47 @@ p {
551 551  
552 552 /* fim de comentário*/
553 553  
  554 +/*paginação*/
  555 +
  556 +.pagination {
  557 +}
  558 +
  559 +#content .pagination a {
  560 + background-image: url("images/bg-paginacao.png");
  561 + background-repeat: no-repeat;
  562 + border-bottom: 0 none;
  563 + color: white;
  564 + display: inline-block;
  565 + font-size: medium;
  566 + font-weight: bold;
  567 + height: 35px;
  568 + padding-top: 4px;
  569 + text-decoration: none;
  570 + width: 35px;
  571 +}
  572 +
  573 +.pagination .current {
  574 + background: url("images/bg-paginacao-preto.png") no-repeat center top transparent;
  575 + background-repeat: no-repeat;
  576 + border-bottom: 0 none;
  577 + color: white;
  578 + display: inline-block;
  579 + font-size: medium;
  580 + font-weight: bold;
  581 + height: 35px;
  582 + padding-top: 4px;
  583 + text-decoration: none;
  584 + width: 35px;
  585 +}
  586 +#content #article .pagination .next_page,
  587 +#content #article .pagination .prev_page{
  588 + background-image: none;
  589 + color: #ccc;
  590 + width: auto;
  591 +}
  592 +
  593 +/*fim paginação*/
  594 +
554 595 /*Display Content na página inicial*/
555 596  
556 597 .action-home-index #content .display-content-block .block-inner-2,
... ...