Ghost_Ruby_Theme/assets/css/blog/pagination.css

35 lines
580 B
CSS
Raw Normal View History

2019-05-04 08:01:50 +03:00
.pagination,
.infinite-scroll-status,
body:not(.paged-next) .infinite-scroll-button {
2020-09-28 06:05:46 +03:00
display: none;
2019-05-04 08:01:50 +03:00
}
2020-09-24 05:18:34 +03:00
2019-05-04 08:01:50 +03:00
.infinite-scroll-request {
2020-09-28 06:05:46 +03:00
margin: 30px auto 0;
width: 40px;
2020-10-19 04:07:40 +03:00
height: 40px;
background-color: var(--dark-gray-color);
border-radius: 50%;
animation: scaleOut 1s infinite ease-in-out;
2019-05-04 08:01:50 +03:00
}
2020-09-24 05:18:34 +03:00
2019-05-04 08:01:50 +03:00
.infinite-scroll-action {
2020-09-28 06:05:46 +03:00
display: flex;
justify-content: center;
2019-05-04 08:01:50 +03:00
}
2020-09-24 05:18:34 +03:00
2019-05-04 08:01:50 +03:00
.infinite-scroll-button {
2020-09-28 06:05:46 +03:00
margin-top: 30px;
2019-05-04 08:01:50 +03:00
}
2020-09-24 05:18:34 +03:00
2019-05-04 08:01:50 +03:00
@keyframes scaleOut {
2020-09-28 06:05:46 +03:00
0% {
transform: scale(0);
}
2020-09-24 05:18:34 +03:00
2020-09-28 06:05:46 +03:00
100% {
opacity: 0;
transform: scale(1);
}
}