Ghost_Ruby_Theme/assets/css/blog/pagination.css

30 lines
535 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 {
display: none;
}
.infinite-scroll-request {
animation: scaleOut 1s infinite ease-in-out;
background-color: var(--dark-gray-color);
2019-05-04 08:01:50 +03:00
border-radius: 50%;
height: 40px;
2019-05-09 14:14:57 +03:00
margin: 30px auto 0;
2019-05-04 08:01:50 +03:00
width: 40px;
}
.infinite-scroll-action {
display: flex;
justify-content: center;
}
.infinite-scroll-button {
margin-top: 30px;
}
@keyframes scaleOut {
0% {
transform: scale(0);
}
2019-05-04 08:01:50 +03:00
100% {
opacity: 0;
transform: scale(1);
}
}