From 7d2a4975ce25bc92fe89a629e84d3ffe48cd44fd Mon Sep 17 00:00:00 2001 From: Sander Hautvast Date: Fri, 5 Mar 2021 08:58:07 +0100 Subject: [PATCH] added link to github --- README.md | 2 +- index.html | 5 ++++- src/css/app.css | 10 ++++++++-- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f4e532c..b38d8e5 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ The repl has the following syntax (It's work in progress, new capabilities will b = vector(-1, 1) c = "a + b" ``` -* and press enter. Then using the mouse pointer move a or b. Or try: ```a = 2 * a``` +* and press enter. Then using the mouse pointer move vector ```a``` or ```b```. Or try: ```a = 2 * a``` This updates vector ```a``` to twice it's size. And, because ```c``` is defined lazily, it is updated as well! diff --git a/index.html b/index.html index 99ad8f7..20859ed 100644 --- a/index.html +++ b/index.html @@ -6,8 +6,11 @@ +https://github.com/shautvast/matrepl
-
+
+
+
diff --git a/src/css/app.css b/src/css/app.css index f5cdb5f..b53ed91 100644 --- a/src/css/app.css +++ b/src/css/app.css @@ -1,9 +1,14 @@ body { - font: 13px Arial, sans-serif; + font: 11px Arial, sans-serif; background: black; overflow: hidden; -} +} +.right{ + color: gray; + position: absolute; + right: 0; +} .background { position: absolute; left: 0; @@ -32,6 +37,7 @@ svg { } #console { + font: 13px Arial, sans-serif; padding: 5px; color: greenyellow; background: black;