From 2e2cef322667c04fc64cf6e3cfd0a347cd6b9a74 Mon Sep 17 00:00:00 2001 From: Marvin Scham Date: Fri, 26 Aug 2022 01:28:02 +0200 Subject: [PATCH] Added REPL example --- repl/repl.html | 33 +++++++++++++++++++++++++++++++++ repl/style.css | 19 +++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 repl/repl.html create mode 100644 repl/style.css diff --git a/repl/repl.html b/repl/repl.html new file mode 100644 index 0000000..5c064dd --- /dev/null +++ b/repl/repl.html @@ -0,0 +1,33 @@ + + + + + + + REPL mit Matplotlib + + + + + + - matplotlib + + + +
+ Eingabe +
+ +
+
+ Ausgabe +
+
+
+
+ Fehler +
+
+
+ + diff --git a/repl/style.css b/repl/style.css new file mode 100644 index 0000000..70d5058 --- /dev/null +++ b/repl/style.css @@ -0,0 +1,19 @@ +body { + box-sizing: border-box; + background-color: #fff; + display: flex; + flex-wrap: wrap; + justify-content: center; + padding: 1em; +} +body > div { + background-color: #fff; + box-shadow: 0px 5px 10px #ccc; + padding: 1em; + margin: 1em; + flex: 0 40%; + min-height: 40vh; +} +body > div:last-of-type { + flex: 0 80%; +}