logo

searx

My custom branche(s) on searx, a meta-search engine git clone https://hacktivis.me/git/searx.git

infinite_scroll.css (473B)


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