diff --git a/content/datenspuren/index.xml b/content/datenspuren/index.xml index a65bc805b..d4d4cc0f3 100644 --- a/content/datenspuren/index.xml +++ b/content/datenspuren/index.xml @@ -26,7 +26,7 @@ Dresden -
+
Eintritt: frei!
diff --git a/content/static/datenspuren/2017/style/style.css b/content/static/datenspuren/2017/style/style.css index 3585647a7..735efebdb 100644 --- a/content/static/datenspuren/2017/style/style.css +++ b/content/static/datenspuren/2017/style/style.css @@ -113,3 +113,40 @@ footer { width: 50%; } } + +.free-admission { + margin: 1em 0; + color: #ff0000; + font-weight: bold; + animation-name: glitch; + animation-duration: 10s; + animation-iteration-count: infinite; + transform-origin: 0% 50%; +} + +@keyframes glitch { + 0% { + color: #ff0000; + transform: translate(1em, 0) rotate(-90deg); + } + 24.9% { + color: #ff0000; + transform: translate(1em, 0) rotate(-90deg); + } + 25% { + color: #738588; + transform: none; + } + 74.9% { + color: #738588; + transform: none; + } + 75% { + color: #fe0080; + transform: rotate(45deg) scale(1.5, 1.5); + } + 100% { + color: #fe0080; + transform: rotate(45deg) scale(1.5, 1.5); + } +}