From 518d6cce15b3ca2660a42143dc2ac47496e77672 Mon Sep 17 00:00:00 2001 From: JSriwongsa Date: Sat, 27 May 2023 23:57:16 -0500 Subject: [PATCH] made a responsive design for countdown section --- restaurant_website/style.css | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/restaurant_website/style.css b/restaurant_website/style.css index 01fe6e9..1d6ebcc 100644 --- a/restaurant_website/style.css +++ b/restaurant_website/style.css @@ -531,7 +531,14 @@ label{ .reservation-form form textarea{ font-size: 1rem; } - + .col{ + width: 500px; + } +} +@media(max-width:500px){ + .col{ + width: 400px; + } } @media(max-width:450px){ html{ @@ -541,5 +548,10 @@ label{ grid-template-columns: repeat(1,1fr); } } +@media(max-width:350px){ + .col{ + width: 250px; + } +}