The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 10: | Line 10: | ||
@keyframes task-background { | @keyframes task-background { | ||
0% {background: var(--color-error- | 0% {background: var(--color-error-lighter1);} | ||
22% {background: var(--color-error- | 22% {background: var(--color-error-lighter2);} | ||
25% {background: var(--color-warning- | 25% {background: var(--color-warning-lighter1);} | ||
47% {background: var(--color-warning- | 47% {background: var(--color-warning-lighter2);} | ||
50% {background: var(--color-success- | 50% {background: var(--color-success-lighter1);} | ||
72% {background: var(--color-success- | 72% {background: var(--color-success-lighter2);} | ||
75% {background: var(--color-info- | 75% {background: var(--color-info-lighter1);} | ||
97% {background: var(--color-info- | 97% {background: var(--color-info-lighter2);} | ||
100% {background: var(--color-error- | 100% {background: var(--color-error-lighter1);} | ||
} | } | ||
Line 25: | Line 25: | ||
height: 1.5em; | height: 1.5em; | ||
width: 5em; | width: 5em; | ||
border: 1px solid black; | |||
border-radius: 0.2em; | border-radius: 0.2em; | ||
vertical-align: middle; | vertical-align: middle; | ||
animation: task-background 16s infinite; | animation: task-background 16s infinite; | ||
} | } | ||