
* move all source code to src/ * replace express response patch with middleware * fix readdir not looking in src * fix stray redirect * add base to manifest * remove secret.txt from src/config/secret * add src/config/secret/secret.txt to gitignore
19 lines
297 B
Text
19 lines
297 B
Text
// Animated Icons
|
|
// --------------------------
|
|
|
|
.@{fa-css-prefix}-spin {
|
|
animation: fa-spin 2s infinite linear;
|
|
}
|
|
|
|
.@{fa-css-prefix}-pulse {
|
|
animation: fa-spin 1s infinite steps(8);
|
|
}
|
|
|
|
@keyframes fa-spin {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|