aboutsummaryrefslogtreecommitdiffstats
path: root/csci4131/hw3/style.css
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--csci4131/hw3/style.css9
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;