From f52d35da2a6b2593cf5b03892c521e2e10ecf444 Mon Sep 17 00:00:00 2001 From: nune <145225213+gigirassy@users.noreply.github.com> Date: Fri, 20 Dec 2024 10:36:39 -0500 Subject: [PATCH] Update index.html --- public/index.html | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/public/index.html b/public/index.html index c20e218..494dbd9 100644 --- a/public/index.html +++ b/public/index.html @@ -46,6 +46,34 @@ a { color: var(--link-color); } + + #asciiArtContainer { + position: fixed; + bottom: 0; + right: 0; + padding: 10px; + font-family: monospace; + white-space: pre; + background: rgba(0, 0, 0, 0.5); + color: #fff; + font-size: 1rem; /* Default font size for desktop */ + } + + @media (max-width: 768px) { + /* For tablets and small screens */ + #asciiArtContainer { + font-size: 0.8rem; /* Slightly smaller font */ + padding: 8px; /* Reduced padding */ + } + } + + @media (max-width: 480px) { + /* For mobile devices */ + #asciiArtContainer { + font-size: 0.6rem; /* Smaller font size for mobile */ + padding: 5px; /* Minimal padding */ + } + }