twentyeleven.css
7 months ago
twentyeleven.php
7 months ago
twentyfifteen-rtl.css
11 years ago
twentyfifteen.css
7 months ago
twentyfifteen.php
7 months ago
twentyfourteen.css
7 months ago
twentyfourteen.php
7 months ago
twentyseventeen-rtl.css
9 years ago
twentyseventeen.css
7 months ago
twentyseventeen.php
7 months ago
twentysixteen-rtl.css
10 years ago
twentysixteen.css
7 months ago
twentysixteen.php
7 months ago
twentyten.css
7 months ago
twentyten.php
7 months ago
twentythirteen.css
7 months ago
twentythirteen.php
7 months ago
twentytwelve.css
7 months ago
twentytwelve.php
7 months ago
twentythirteen.css
101 lines
| 1 | /* =Infinite Scroll |
| 2 | -------------------------------------------------------------- */ |
| 3 | |
| 4 | .infinite-wrap { |
| 5 | border-top: 0; |
| 6 | } |
| 7 | |
| 8 | /* Spinner */ |
| 9 | .infinite-loader { |
| 10 | background-color: #e8e5ce; |
| 11 | padding: 40px 0; |
| 12 | } |
| 13 | |
| 14 | .infinite-loader .spinner { |
| 15 | margin: 0 auto; |
| 16 | width: 34px; |
| 17 | height: 34px; |
| 18 | } |
| 19 | |
| 20 | .sidebar .infinite-loader .spinner { |
| 21 | padding-right: 376px; |
| 22 | } |
| 23 | |
| 24 | .rtl.sidebar .infinite-loader .spinner { |
| 25 | padding-left: 376px; |
| 26 | padding-right: 0; |
| 27 | } |
| 28 | |
| 29 | /* Click-to-load */ |
| 30 | #infinite-handle { |
| 31 | background-color: #e8e5ce; |
| 32 | padding: 40px 0; |
| 33 | text-align: center; |
| 34 | } |
| 35 | |
| 36 | .sidebar #infinite-handle { |
| 37 | padding-right: 376px; |
| 38 | } |
| 39 | |
| 40 | .rtl.sidebar #infinite-handle { |
| 41 | padding-left: 376px; |
| 42 | padding-right: 0; |
| 43 | } |
| 44 | |
| 45 | #infinite-handle span { |
| 46 | background: #e05d22; /* Old browsers */ |
| 47 | background: -webkit-linear-gradient(top, #e05d22 0%, #d94412 100%); /* Chrome 10+, Safari 5.1+ */ |
| 48 | background: linear-gradient(to bottom, #e05d22 0%, #d94412 100%); /* W3C */ |
| 49 | border: none; |
| 50 | border-bottom: 3px solid #b93207; |
| 51 | border-radius: 2px; |
| 52 | display: inline-block; |
| 53 | color: #fff; |
| 54 | font-size: 100%; |
| 55 | padding: 11px 24px 10px; |
| 56 | text-decoration: none; |
| 57 | } |
| 58 | |
| 59 | #infinite-handle span:hover { |
| 60 | background: #ed6a31; /* Old browsers */ |
| 61 | background: -webkit-linear-gradient(top, #ed6a31 0%, #e55627 100%); /* Chrome 10+, Safari 5.1+ */ |
| 62 | background: linear-gradient(to bottom, #ed6a31 0%, #e55627 100%); /* W3C */ |
| 63 | outline: none; |
| 64 | } |
| 65 | |
| 66 | #infinite-handle span:active { |
| 67 | background: #d94412; /* Old browsers */ |
| 68 | background: -webkit-linear-gradient(top, #d94412 0%, #e05d22 100%); /* Chrome 10+, Safari 5.1+ */ |
| 69 | background: linear-gradient(to bottom, #d94412 0%, #e05d22 100%); /* W3C */ |
| 70 | border: none; |
| 71 | border-top: 3px solid #b93207; |
| 72 | padding: 10px 24px 11px; |
| 73 | } |
| 74 | |
| 75 | /* Elements to hide: post navigation, normal footer. */ |
| 76 | .infinite-scroll .paging-navigation, |
| 77 | .infinite-scroll.neverending #colophon { |
| 78 | display: none; |
| 79 | } |
| 80 | |
| 81 | /* Hooks to infinity-end body class to restore footer. */ |
| 82 | .infinity-end.neverending #colophon { |
| 83 | display: block; |
| 84 | } |
| 85 | |
| 86 | /* For small viewports. */ |
| 87 | @media (max-width: 999px) { |
| 88 | |
| 89 | .sidebar .infinite-loader .spinner, |
| 90 | .rtl.sidebar .infinite-loader .spinner { |
| 91 | padding-right: 0; |
| 92 | padding-left: 0; |
| 93 | } |
| 94 | |
| 95 | .infinite-scroll #infinite-handle, |
| 96 | .rtl.sidebar #infinite-handle { |
| 97 | padding-right: 0; |
| 98 | padding-left: 0; |
| 99 | } |
| 100 | } |
| 101 |