From b2fe603170382fc2d0a27aa8e49eabaa8af2671b Mon Sep 17 00:00:00 2001 From: jon-edward Date: Sun, 18 Feb 2024 17:13:51 -0500 Subject: [PATCH] Visual changes --- _config.yml | 2 +- demos/README.md | 18 +++++++++++++++--- demos/demos_index.html | 6 +++--- 3 files changed, 19 insertions(+), 7 deletions(-) diff --git a/_config.yml b/_config.yml index c68e227..59d307d 100644 --- a/_config.yml +++ b/_config.yml @@ -1,3 +1,3 @@ -remote_theme: pages-themes/merlot@v0.2.0 +remote_theme: pages-themes/slate@v0.2.0 plugins: - jekyll-remote-theme diff --git a/demos/README.md b/demos/README.md index 7e20ddd..6893b20 100644 --- a/demos/README.md +++ b/demos/README.md @@ -3,8 +3,10 @@ ## [Cube](https://jon-edward.github.io/nephropidae_wasm/demos/cube) Taken from [https://github.com/aardappel/lobster/blob/master/samples/cube.lobster](https://github.com/aardappel/lobster/blob/master/samples/cube.lobster). +[Demo](https://jon-edward.github.io/nephropidae_wasm/demos/cube) +
-Description +Docstring
 This example renders a cube with a different colorèd number on each face.
 Moving the mouse or WASD rotates the viewport around the cube like turning a
@@ -64,8 +66,10 @@ Kris Kowal <kris@cixar.com>
## [LobsterCraft](https://jon-edward.github.io/nephropidae_wasm/demos/lobstercraft/) Taken from [https://github.com/aardappel/lobster/blob/master/samples/lobstercraft.lobster](https://github.com/aardappel/lobster/blob/master/samples/lobstercraft.lobster). +[Demo](https://jon-edward.github.io/nephropidae_wasm/demos/lobstercraft/) +
-Description +Docstring
 A minecraft clone in very few lines of code implements random world generation, 
 chunks, rendering, and mining/building of blocks created in response to https://github.com/fogleman/Minecraft 
@@ -76,8 +80,10 @@ chunks, rendering, and mining/building of blocks created in response to https://
 ## [Pendulum](https://jon-edward.github.io/nephropidae_wasm/demos/pendulum/)
 Taken from [https://github.com/aardappel/lobster/blob/master/samples/pendulum.lobster](https://github.com/aardappel/lobster/blob/master/samples/pendulum.lobster). 
 
+[Demo](https://jon-edward.github.io/nephropidae_wasm/demos/pendulum/)
+
 
-Description +Docstring
 based on: http://www.physicsandbox.com/projects/double-pendulum.html
@@ -86,6 +92,8 @@ based on: http://www.physicsandbox.com/projects/double-pendulum.html
## [Physics Boxes](https://jon-edward.github.io/nephropidae_wasm/demos/physics_boxes/) Taken from [https://github.com/aardappel/lobster/blob/master/samples/physics_boxes.lobster](https://github.com/aardappel/lobster/blob/master/samples/physics_boxes.lobster). +[Demo](https://jon-edward.github.io/nephropidae_wasm/demos/physics_boxes/) +
Docstring
@@ -96,6 +104,8 @@ Showing off physics features in Lobster
## [Physics Water](https://jon-edward.github.io/nephropidae_wasm/demos/physics_water/) Taken from [https://github.com/aardappel/lobster/blob/master/samples/physics_water.lobster](https://github.com/aardappel/lobster/blob/master/samples/physics_water.lobster). +[Demo](https://jon-edward.github.io/nephropidae_wasm/demos/physics_water/) +
Docstring
@@ -106,6 +116,8 @@ Showing off physics features in Lobster
## [PythTree](https://jon-edward.github.io/nephropidae_wasm/demos/pythtree/) Taken from [https://github.com/aardappel/lobster/blob/master/samples/pythtree.lobster](https://github.com/aardappel/lobster/blob/master/samples/pythtree.lobster). +[Demo](https://jon-edward.github.io/nephropidae_wasm/demos/pythtree/) +
Docstring
diff --git a/demos/demos_index.html b/demos/demos_index.html
index 15d8c29..8a147e5 100644
--- a/demos/demos_index.html
+++ b/demos/demos_index.html
@@ -21,11 +21,11 @@
             position: absolute; 
             top: 10px; 
             border: 0;
-            background: rgba(238, 238, 221, 0.4);
+            background: rgba(238, 238, 221, 0.5);
             width: 50px;
             height: 50px;
             font-size: x-large;
-            color: rgba(51,51,51, 0.4);
+            color: rgba(51,51,51, 0.5);
             box-shadow: none;
             border-radius: 2px;
             border-style: solid;
@@ -36,7 +36,7 @@
         }
 
         .control-button:hover {
-            background-color: rgba(211, 211, 194, 0.6);
+            background-color: rgba(211, 211, 194, 0.7);
         }
 
         #return-button {