Linear Easing Only for Progress
Linear easing only for progress bars and time representation.
Incorrect (linear for motion):
.card-slide { transition: transform 200ms linear; }Correct (linear for progress):
.progress-bar { transition: width 100ms linear; }