twentyfifteen-rtl.css
7 years ago
twentyfifteen.css
4 years ago
twentyfifteen.php
4 years ago
twentyfourteen-rtl.css
7 years ago
twentyfourteen.css
4 years ago
twentyfourteen.php
4 years ago
twentynineteen-rtl.css
3 years ago
twentynineteen.css
3 years ago
twentynineteen.php
4 years ago
twentyseventeen.php
4 years ago
twentysixteen-rtl.css
3 years ago
twentysixteen.css
3 years ago
twentysixteen.php
4 years ago
twentytwenty-rtl.css
4 years ago
twentytwenty.css
4 years ago
twentytwenty.php
4 years ago
twentytwentyone-rtl.css
3 years ago
twentytwentyone.css
5 years ago
twentytwentyone.php
5 years ago
twentytwentyone.css
99 lines
| 1 | /** |
| 2 | * Related Posts |
| 3 | */ |
| 4 | |
| 5 | .entry-content #jp-relatedposts { |
| 6 | max-width: var(--responsive--aligndefault-width); |
| 7 | margin-left: auto; |
| 8 | margin-right: auto; |
| 9 | } |
| 10 | |
| 11 | /** |
| 12 | * Infinite Scroll |
| 13 | */ |
| 14 | |
| 15 | /* Globally hidden elements when Infinite Scroll is supported and in use. */ |
| 16 | .infinite-scroll .pagination, |
| 17 | .infinite-scroll.neverending .widget-area, |
| 18 | .infinite-scroll.neverending footer#colophon { |
| 19 | /* Theme Footer (when set to scrolling) */ |
| 20 | display: none; |
| 21 | } |
| 22 | |
| 23 | /* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */ |
| 24 | .infinity-end.neverending .widget-area, |
| 25 | .infinity-end.neverending footer#colophon { |
| 26 | display: block; |
| 27 | } |
| 28 | |
| 29 | body[class*=" infinity-"] main#main > article:last-of-type .entry-footer { |
| 30 | border-bottom: var(--separator--height) solid var(--separator--border-color); |
| 31 | } |
| 32 | |
| 33 | body:not(.infinity-end) .site-main > div:nth-last-child(2) > article:last-of-type .entry-footer, |
| 34 | body.infinity-end .site-main > div:last-of-type > article:last-of-type .entry-footer { |
| 35 | border: none; |
| 36 | } |
| 37 | |
| 38 | .site-main > .infinite-wrap > article > .entry-footer { |
| 39 | margin-top: var(--global--spacing-vertical); |
| 40 | padding-top: var(--global--spacing-unit); |
| 41 | padding-bottom: calc(3 * var(--global--spacing-vertical)); |
| 42 | border-bottom: var(--separator--height) solid var(--separator--border-color); |
| 43 | } |
| 44 | |
| 45 | .site-main > .infinite-wrap > * { |
| 46 | margin-top: calc(3 * var(--global--spacing-vertical)); |
| 47 | margin-bottom: calc(3 * var(--global--spacing-vertical)); |
| 48 | } |
| 49 | |
| 50 | #infinite-handle { |
| 51 | text-align: center; |
| 52 | } |
| 53 | |
| 54 | .infinite-loader { |
| 55 | margin: calc(3 * 1rem) auto; |
| 56 | } |
| 57 | |
| 58 | #infinite-handle span { |
| 59 | color: var(--global--color-background); |
| 60 | background-color: var(--global--color-secondary);; |
| 61 | font-family: var(--global--font-primary); |
| 62 | font-size: var(--global--font-size-base); |
| 63 | font-weight: 500; |
| 64 | line-height: 1.5; |
| 65 | border-width: 3px; |
| 66 | border-radius: 0; |
| 67 | padding: 15px calc(2 * var(--button--padding-vertical)); |
| 68 | max-width: 170px; |
| 69 | margin: auto; |
| 70 | } |
| 71 | |
| 72 | #infinite-handle span:hover { |
| 73 | color: var(--global--color-secondary); |
| 74 | background-color: var(--global--color-background); |
| 75 | border-color: var(--global--color-secondary); |
| 76 | border-style: solid; |
| 77 | } |
| 78 | |
| 79 | #infinite-handle span:active { |
| 80 | color: var(--global--color-secondary); |
| 81 | background-color: var(--global--color-background); |
| 82 | border-color: var(--global--color-secondary); |
| 83 | } |
| 84 | |
| 85 | /* Customizer */ |
| 86 | .widget-area .widget_block { |
| 87 | min-width: 0; |
| 88 | } |
| 89 | |
| 90 | @media only screen and (min-width: 1024px) { |
| 91 | .widget-area { |
| 92 | /* |
| 93 | Fix: minimum width of 0 |
| 94 | See: https://css-tricks.com/preventing-a-grid-blowout/ |
| 95 | */ |
| 96 | grid-template-columns: repeat( 3, minmax(0, 1fr) ); |
| 97 | } |
| 98 | } |
| 99 |