summaryrefslogtreecommitdiff
path: root/index.css
diff options
context:
space:
mode:
Diffstat (limited to 'index.css')
-rw-r--r--index.css15
1 files changed, 15 insertions, 0 deletions
diff --git a/index.css b/index.css
index da9a17e..df799d6 100644
--- a/index.css
+++ b/index.css
@@ -58,4 +58,19 @@ body {
58 58
59ul li { 59ul li {
60 list-style-type: '- '; 60 list-style-type: '- ';
61}
62
63#chung {
64 animation: rotation 1s;
65 animation-timing-function: linear;
66 animation-iteration-count: infinite;
67}
68
69@keyframes rotation {
70 from {
71 transform: rotate(0deg);
72 }
73 to {
74 transform: rotate(359deg);
75 }
61} \ No newline at end of file 76} \ No newline at end of file