From 17d13e36a33d16e5242ae3b185e10928f41dd69d Mon Sep 17 00:00:00 2001 From: sanine Date: Sun, 7 Jul 2024 12:28:13 -0500 Subject: add help.html --- help.html | 40 ++++++++++++++++++++++++++++++++++++++++ style.css | 22 +++++++++++++++++++++- 2 files changed, 61 insertions(+), 1 deletion(-) create mode 100644 help.html diff --git a/help.html b/help.html new file mode 100644 index 0000000..a977a2c --- /dev/null +++ b/help.html @@ -0,0 +1,40 @@ + + + + + + Hyperspace Navigator - Help + + + + + + + +
+

hyperspace navigator help

+

+ HYPERSPACE NAVIGATOR is a game about designing trajectories using parametric curves. These are curves where y is not determined by some function of x (e.g. y = f[x]), but where both x and y are determined by a third quantity t, which we might think of as time. + Parametric curves are capable of producing complex and beautiful shapes from relatively simple definitions, and I encourage you to play with the system to see what you can create! +

+

+ While defining your parametric curves, you have access to the following operations: +

+ +
+ + + diff --git a/style.css b/style.css index 2b3b86e..6555b37 100644 --- a/style.css +++ b/style.css @@ -54,7 +54,7 @@ body { padding-top: 8px; } -#footer a { +a { color: orange; } @@ -127,6 +127,26 @@ input[type=button]:active { } +input[type=range] { + accent-color: orange; + margin-bottom: 0; +} + +.alert-box label { + padding-bottom: 16px; +} + + label { text-transform: lowercase; } + + +.normal { + text-transform: none; +} + + +.normal li { + font-size: 24px; +} -- cgit v1.2.1