Float up and down effect

Paste the code below into the main element field of the advanced settings of the module.

animation-name: updown;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    margin-left: 0px;
    margin-top: 0px;
}

@keyframes updown {
    from { transform: translate(0,  15px); }
    50%  { transform: translate(0, -15px); }
    to   { transform: translate(0, 15px); }