diff options
Diffstat (limited to 'css/chung.css')
| -rw-r--r-- | css/chung.css | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/css/chung.css b/css/chung.css new file mode 100644 index 0000000..17c8ec3 --- /dev/null +++ b/css/chung.css | |||
| @@ -0,0 +1,14 @@ | |||
| 1 | #chung { | ||
| 2 | animation: rotation 1s; | ||
| 3 | animation-timing-function: linear; | ||
| 4 | animation-iteration-count: infinite; | ||
| 5 | } | ||
| 6 | |||
| 7 | @keyframes rotation { | ||
| 8 | from { | ||
| 9 | transform: rotate(0deg); | ||
| 10 | } | ||
| 11 | to { | ||
| 12 | transform: rotate(359deg); | ||
| 13 | } | ||
| 14 | } \ No newline at end of file | ||
