diff options
Diffstat (limited to 'csci4131/hw3/style.css')
-rw-r--r-- | csci4131/hw3/style.css | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/csci4131/hw3/style.css b/csci4131/hw3/style.css index a4e9ec2..3617820 100644 --- a/csci4131/hw3/style.css +++ b/csci4131/hw3/style.css @@ -40,6 +40,15 @@ tr:nth-child(odd) { object-fit: cover; margin-right: 0; } +.isRotating { + animation:5s rotate infinite linear; +} +.isntRotating { + animation-play-state: paused; +} +@keyframes rotate{ + 100%{ transform:rotate(1turn) } // or 360deg +} #map { padding-top: 30%; margin-top: 25em; |