mirror of
https://github.com/searxng/searxng.git
synced 2025-07-24 13:49:26 +02:00
parent
975bd5beb5
commit
678b9e994a
4 changed files with 44 additions and 0 deletions
16
searx/static/plugins/css/infinite_scroll.css
Normal file
16
searx/static/plugins/css/infinite_scroll.css
Normal file
|
@ -0,0 +1,16 @@
|
|||
@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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue