Revamp CSS template system using var() feature

This commit is contained in:
djmaze 2021-02-05 10:42:20 +01:00
parent 92bbaadbf3
commit d9bece04b2
30 changed files with 317 additions and 530 deletions

View file

@ -11,6 +11,8 @@ body {
}
#rl-loading, #rl-loading-error {
color: var(--loading-color);
text-shadow: var(--loading-text-shadow);
font-size: 30px;
line-height: 130%;
position: fixed;
@ -28,7 +30,7 @@ body {
.e-spinner .e-bounce {
animation: bouncedelay 1.4s infinite ease-in-out;
background-color: #333;
background-color: var(--loading-color, #333);
border-radius: 100%;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
display: inline-block;