From 8a85fb0f6bb55cf35695083664200f439a3f713a Mon Sep 17 00:00:00 2001 From: Brad Ganley Date: Sat, 25 Nov 2023 00:30:53 -0600 Subject: [PATCH] Copied modified files from original project --- index.html | 4 ++-- style.css | 14 +++++++++----- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/index.html b/index.html index f3ca3dc..b80ad43 100644 --- a/index.html +++ b/index.html @@ -1,8 +1,8 @@ - typehere - + Deposit Your Bullshit + diff --git a/style.css b/style.css index c2846ae..c16324d 100644 --- a/style.css +++ b/style.css @@ -2,9 +2,8 @@ html, body { height: 100%; margin: 0; padding: 0; - background-color: #f0f0f0; /* Slightly off-white background for better visibility */ + background-color: #002b36; } - #typingCanvas { --padding: 20px; @@ -13,13 +12,18 @@ html, body { border: none; outline: none; /* Removes the default focus outline */ - background: transparent; /* Makes the textarea background transparent */ +/* background: transparent; /* Makes the textarea background transparent */ + background-color: #073642; /* Makes the textarea background transparent */ margin: 0; padding: var(--padding); /* Adds some padding for better text positioning */ resize: none; - font-family: "Lucida Console", "Courier New", monospace; + font-family: "Monaco", sans-serif; font-size: 20px; - color: #333; /* Darker text color for better contrast */ + color: #657b83; /* Darker text color for better contrast */ + text-rendering: optimizeLegibility; + font-smooth: always; + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; } /* Ensuring the cursor is always visible */