diff --git a/cgi-bin/vorbereitung/waltermode.html b/cgi-bin/vorbereitung/waltermode.html index 1d9521c..89b959e 100644 --- a/cgi-bin/vorbereitung/waltermode.html +++ b/cgi-bin/vorbereitung/waltermode.html @@ -20,12 +20,12 @@ @keyframes stretchyWalter { 0% { - width: 30%; - height: 100%; + width: 10%; + height: 90%; } 100% { - width: 100%; - height: 30%; + width: 90%; + height: 10%; } } @@ -73,6 +73,31 @@ h1 { background-color: blue; } } + +.howard { + display: block; + margin-left: auto; + margin-right: auto; + height: 30%; + width: 30%; + z-index: 3; + + animation-name: howardspin; + animation-duration: 2.4s; + animation-timing-function: linear; + animation-iteration-count: infinite; + +} + +@keyframes howardspin { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(360deg); + } +} +
@@ -83,6 +108,8 @@ h1 {