summaryrefslogtreecommitdiff
path: root/searx/static/plugins/css/infinite_scroll.css
blob: 07b9f6de90ea201bf287443add5583b03b6b5a4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@keyframes rotate-forever {
    0%   { transform: rotate(0deg) }
    100% { transform: rotate(360deg) }
}
.loading-spinner {
    animation-duration: 0.75s;
    animation-iteration-count: infinite;
    animation-name: rotate-forever;
    animation-timing-function: linear;
    height: 30px;
    width: 30px;
    border: 8px solid #666;
    border-right-color: transparent;
    border-radius: 50% !important;
    margin: 0 auto;
}
#pagination button {
	visibility: hidden;
}