17 lines
285 B
CSS
17 lines
285 B
CSS
#digit {
|
|
width: .5em;
|
|
overflow: hidden;
|
|
font: 32px monospace;
|
|
cursor: pointer;
|
|
}
|
|
|
|
#stripe {
|
|
display: inline-block
|
|
}
|
|
|
|
#stripe.animate {
|
|
transform: translate(-90%);
|
|
transition-property: transform;
|
|
transition-duration: 9s;
|
|
transition-timing-function: steps(9, start);
|
|
}
|