[build] /static

This commit is contained in:
Alexandre Flament 2022-02-04 13:12:04 +01:00
parent 83a47ef70b
commit 09e7abd2a2
14 changed files with 151 additions and 17 deletions

View file

@ -382,6 +382,29 @@
.col-stat {
width: 10rem;
}
@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;
}
html.infinite_scroll #pagination button {
visibility: hidden;
}
/*
this file is generated automatically by searxng_extra/update/update_pygments.py
using pygments version 2.11.2