From 37c2a85b90701fadc8d2575b3f15eb390a784dfd Mon Sep 17 00:00:00 2001 From: zyqunix Date: Sat, 15 Mar 2025 22:09:18 +0100 Subject: [PATCH] plinko --- plinko/index.html | 16 ++++++++++++++++ plinko/style.css | 17 +++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 plinko/index.html create mode 100644 plinko/style.css diff --git a/plinko/index.html b/plinko/index.html new file mode 100644 index 0000000..03596bc --- /dev/null +++ b/plinko/index.html @@ -0,0 +1,16 @@ + + + + + + + Document + + + + +
+
+ + + \ No newline at end of file diff --git a/plinko/style.css b/plinko/style.css new file mode 100644 index 0000000..b0cc35e --- /dev/null +++ b/plinko/style.css @@ -0,0 +1,17 @@ +html, body { + margin: 0; + height: 100%; + width: 100%; +} + +.iframe-wrapper { + height: 100%; + width: 100%; + display: flex; +} + +iframe { + width: 100%; + height: 100%; + border: none; +}