Advertisement
fabi0

Untitled

Dec 8th, 2020
646
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.52 KB | None | 0 0
  1. li.stec-layout-month-daycell {
  2.         height: 25px !important;
  3.         overflow: hidden;
  4.         /*position: relative;*/
  5.     }
  6.  
  7.     li.stec-layout-month-daycell p.stec-layout-month-daycell-event-name {
  8.         position: absolute;
  9.         width: 100%;
  10.         height: 100% !important;
  11.         margin: 0;
  12.         text-align: center !important;
  13.         -moz-transform: translateX(-100%);
  14.         -webkit-transform: translateX(-100%);
  15.         transform: translateX(-100%);
  16.         -moz-animation: scroll-right 15s linear infinite;
  17.         -webkit-animation: scroll-right 15s linear infinite;
  18.         animation: scroll-right 15s linear infinite;
  19.     }
  20.  
  21.     /* Move it (define the animation) */
  22.     @-moz-keyframes scroll-right {
  23.         0% {
  24.             -moz-transform: translateX(-100%);
  25.         }
  26.         100% {
  27.             -moz-transform: translateX(100%);
  28.         }
  29.     }
  30.  
  31.     @-webkit-keyframes scroll-right {
  32.         0% {
  33.             -webkit-transform: translateX(-100%);
  34.         }
  35.         100% {
  36.             -webkit-transform: translateX(100%);
  37.         }
  38.     }
  39.  
  40.     @keyframes scroll-right {
  41.         0% {
  42.             -moz-transform: translateX(-100%); /* Browser bug fix */
  43.             -webkit-transform: translateX(-100%); /* Browser bug fix */
  44.             transform: translateX(-100%);
  45.         }
  46.         100% {
  47.             -moz-transform: translateX(100%); /* Browser bug fix */
  48.             -webkit-transform: translateX(100%); /* Browser bug fix */
  49.             transform: translateX(100%);
  50.         }
  51.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement