summaryrefslogtreecommitdiff
path: root/css/chung.css
blob: 17c8ec39685c96caf85a96566752a308b11bcc98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#chung {
	animation: rotation 1s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@keyframes rotation {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(359deg);
	}
}