From e216ab4cc0ebe871b791b2450cebba3e1e362fd9 Mon Sep 17 00:00:00 2001 From: Isai Moran <135295630+isaimoran@users.noreply.github.com> Date: Thu, 16 Nov 2023 22:18:29 -0700 Subject: [PATCH 1/3] Update style.css --- intro-to-media-queries/style.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/intro-to-media-queries/style.css b/intro-to-media-queries/style.css index e69de29..b0dda93 100644 --- a/intro-to-media-queries/style.css +++ b/intro-to-media-queries/style.css @@ -0,0 +1,9 @@ +p { + font-size: 14px; +} + +@media all and (min-width: 800px) { + p { + font-size: 24px; + } +} From 52830fbca4c0c043d04fd02caeed135eef79d575 Mon Sep 17 00:00:00 2001 From: Isai Moran <135295630+isaimoran@users.noreply.github.com> Date: Sun, 19 Nov 2023 21:08:51 -0700 Subject: [PATCH 2/3] Update index.html --- html-forms/index.html | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/html-forms/index.html b/html-forms/index.html index c7a70a6..b169c39 100644 --- a/html-forms/index.html +++ b/html-forms/index.html @@ -13,6 +13,24 @@
- +