summaryrefslogtreecommitdiff
path: root/40-abschlusspraesentation/style.css
diff options
context:
space:
mode:
authorOrangerot <purple@orangerot.dev>2024-05-24 17:42:08 +0200
committerOrangerot <purple@orangerot.dev>2024-05-24 17:47:22 +0200
commit7fcdc1c788725f866de71fc9dfd8c4d1cb132b57 (patch)
tree89931c85ae3f149884ba02c69862558e93f01531 /40-abschlusspraesentation/style.css
Initial commitHEADmain
Diffstat (limited to '40-abschlusspraesentation/style.css')
-rw-r--r--40-abschlusspraesentation/style.css29
1 files changed, 29 insertions, 0 deletions
diff --git a/40-abschlusspraesentation/style.css b/40-abschlusspraesentation/style.css
new file mode 100644
index 0000000..58acdb6
--- /dev/null
+++ b/40-abschlusspraesentation/style.css
@@ -0,0 +1,29 @@
+.container {
+ display: inline-block;
+ vertical-align: top;
+ overflow: hidden;
+}
+.fragment.write-effect {
+ display: inline-block;
+ overflow: hidden;
+ border-right: .15em solid orange;
+ white-space: nowrap;
+ width: 0%;
+}
+
+.fragment.write-effect.visible {
+ animation: typing 1s forwards;
+}
+
+@keyframes typing {
+ from { width: 0% }
+ to { width: 100% }
+}
+#bubble-chart {
+ display: block;
+ position: absolute;
+ top: 0px;
+ left: 0px;
+ width: 100%;
+ height: 100%;
+}