Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/**
* Stylesheet: DigitScroller
* Author: Marisa1980
* Description: Import and display CSS for DigitScroller.js
* Other: This stylesheet can not run on mobile site
**/
/* Main container */
.digit-scroller {
display: inline-flex;
}
/* Minus symbol */
.digit-scroller__minus {
display: inline-block;
line-height: 1em;
}
/* Digit style */
.digit-scroller__digit {
display: inline-block;
height: 1em;
overflow: hidden;
vertical-align: middle;
align-content: center;
}
/* Digit strip style */
.digit-scroller__digit-strip {
display: block;
transition: transform 2s cubic-bezier(.2,.9,.3,1);
will-change: transform;
}
.digit-scroller__digit-strip > div {
height: 1em;
line-height: 1em;
}
/* Digit separator */
.digit-scroller__separator {
display: inline-block;
line-height: 1em;
}