diff --git a/templates/default.css b/templates/default.css index 055d33b..034caf4 100644 --- a/templates/default.css +++ b/templates/default.css @@ -53,7 +53,7 @@ } .tagentry label:hover { - background-color: var(--color7); + background-color: var(--color4); } .tagentry .tagtoggle:hover { @@ -74,6 +74,27 @@ font-weight: 800; } +.loader { + width: 48px; + height: 48px; + border-radius: 50%; + display: inline-block; + border-top: 3px solid var(--bcolor2); + border-right: 3px solid transparent; + box-sizing: border-box; + animation: rotation 1s linear infinite; +} + +@keyframes rotation { + 0% { + transform: rotate(0deg); + } + + 100% { + transform: rotate(360deg); + } +} + body { color: var(--bcolor2); background-color: var(--bcolor1); @@ -87,4 +108,4 @@ body a { font-weight: 400; color: var(--color5); text-decoration: none; -} \ No newline at end of file +}