From e165b23b46af4b473f26ecc365f94f7e5735ec5b Mon Sep 17 00:00:00 2001 From: Cade Scroggins Date: Wed, 16 Nov 2022 14:17:26 -0800 Subject: [PATCH] add readme link --- index.html | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/index.html b/index.html index 3230a9a..949b6a9 100644 --- a/index.html +++ b/index.html @@ -207,6 +207,19 @@ color: var(--color-text); } + .help { + bottom: 0; + color: var(--color-text-subtle); + display: none; + padding: var(--space-1) var(--space-2); + position: fixed; + right: 0; + } + + .readme { + color: var(--color-text); + } + @media (min-width: 500px) { .commands { grid-template-columns: repeat(2, 1fr); @@ -217,6 +230,10 @@ .commands { grid-template-columns: repeat(3, 1fr); } + + .help { + display: block; + } } @media (min-width: 900px) { @@ -233,6 +250,15 @@