aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/style/keyframes.ts
blob: 28ea502473eb1f9eec6b76eb42569781e7d74564 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { keyframes } from 'ts/style/theme';

export const rotate = keyframes`
    100% {
      transform: rotate(360deg);
    }
`;

export const dash = keyframes`
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
`;
d6b5fa5'>refslogtreecommitdiffstats
path: root/news/cg
Commit message (Expand)AuthorAgeFilesLines
* - Add LICENSEamdmi32017-12-272-1/+4
* Prevent collision with get_linebapt2016-05-122-0/+31
* - Stage supportmiwi2014-02-031-3/+2
* Add NO_STAGE all over the place in preparation for the staging support (cat: ...bapt2013-09-211-5/+2