From 04606a7a93b71fc45148469509d59a3c6936f8f2 Mon Sep 17 00:00:00 2001 From: Infinity <85234537+guptaanant682@users.noreply.github.com> Date: Sat, 18 Nov 2023 01:22:10 +0530 Subject: [PATCH] Update style.css few comments added --- style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/style.css b/style.css index 5940920..71c97fc 100644 --- a/style.css +++ b/style.css @@ -1,5 +1,7 @@ +/* This imports the Muli font from Google Fonts and sets the page styling using CSS variables */ @import url("https://fonts.googleapis.com/css?family=Muli&display=swap"); +/* Set of CSS variables to define colors, shadows, and other properties used throughout the page */ * { --bg-color: #eef0f4; --color: #333; @@ -13,6 +15,7 @@ --filter3: drop-shadow(-2px -2px 3px #ffffff) drop-shadow(2px 2px 3px #c3c5c8); } +/* Global styles */ * { box-sizing: border-box; margin: 0; @@ -110,6 +113,7 @@ textarea { margin: 15px 0; } +/* Media query for smaller screens */ @media screen and (max-width: 400px) { .result-container { font-size: 14px;