File: _modules.scss

package info (click to toggle)
libjs-jsxc 3.0.0%2Bdfsg3-2
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 16,856 kB
  • ctags: 2,731
  • sloc: makefile: 13; sh: 1
file content (30 lines) | stat: -rw-r--r-- 463 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
@keyframes bounce {
    0% {
        bottom: 0;
        animation-timing-function: ease-in;
    }

    12% {
        bottom: 5px;
        animation-timing-function: ease-out;
    }

    25% {
        bottom: 0;
        animation-timing-function: ease-in;
    }

    37% {
        bottom: 5px;
        animation-timing-function: ease-out;
    }

    50% {
        bottom: 0;
        animation-timing-function: ease-in;
    }

    100% {
        bottom: 0;
    }
}