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