From 36a56d12a5a5e1be210c6e98ab4440faed297a67 Mon Sep 17 00:00:00 2001 From: Brooke Date: Sun, 5 May 2024 19:47:21 -0400 Subject: [PATCH] update script --- .gitea/workflows/deploy.yaml | 7 ++-- public/spellcheck/index.html | 62 ++++++++++++++++++++++++++++++++++++ public/style.css | 28 ++++++++++++++-- 3 files changed, 92 insertions(+), 5 deletions(-) create mode 100755 public/spellcheck/index.html mode change 100755 => 100644 public/style.css diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index 1acd0bc..cda9346 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -1,7 +1,10 @@ name: Static -on: [push] - +on: + push: + branches: + - main + jobs: build: diff --git a/public/spellcheck/index.html b/public/spellcheck/index.html new file mode 100755 index 0000000..04e6e1a --- /dev/null +++ b/public/spellcheck/index.html @@ -0,0 +1,62 @@ + + + + + + The Mycelial Network + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+

Start writing in the box below and errors will be highlighted

+ +
+
+ + diff --git a/public/style.css b/public/style.css old mode 100755 new mode 100644 index 22729dd..270ef6e --- a/public/style.css +++ b/public/style.css @@ -66,9 +66,10 @@ body, text-align: left; z-index: 10; background-color: #241917; - max-width: 35rem; - top: 30%; - left: 15%; + top: 2.5rem; + left: 2.5rem; + bottom: 2.5rem; + right: 2.5rem; } @media only screen and (max-width: 625px) { @@ -139,6 +140,26 @@ body, padding: 5px; } +.area-full { + word-wrap: break-word; + font-size: 12px !important; + background-color: #241917; + color: #fff; + border: 4px solid #f3bbae92; + padding: 5px; + height: 100%; + margin-bottom: 1rem; +} + +.area-full:hover { + border: 4px solid #f3bbae92; +} + +#spellCheck { + height: 100%; + display: flex; +} + #linksTab, #contactTab, #dashTab { @@ -148,6 +169,7 @@ body, #tab-links:checked ~ #linksTab, #tab-contact:checked ~ #contactTab, #tab-about:checked ~ #aboutTab, +#tab-spellcheck ~ #spellCheck, #tab-dash:checked ~ #dashTab { display: block; }