From 9337d8fd699332d206ae87c5dc08a94f912e5ba7 Mon Sep 17 00:00:00 2001 From: aadhithbala Date: Sun, 23 Jul 2023 10:56:00 +0530 Subject: [PATCH] Create testimonial comment section & update styles --- index.html | 69 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ styles.css | 49 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 118 insertions(+) diff --git a/index.html b/index.html index c7ca3fd..a35bbfa 100644 --- a/index.html +++ b/index.html @@ -239,5 +239,74 @@

Spread the word

+ +
+ +
diff --git a/styles.css b/styles.css index fadcc87..dd19461 100644 --- a/styles.css +++ b/styles.css @@ -237,3 +237,52 @@ h2 { .icon-img { width: 5rem; } + +/* Section Social */ + +.section-social { +} + +.social { + padding: 2rem 4.5rem; +} + +.social-container { + background-color: lightsteelblue; + display: grid; + grid-template-columns: 1fr 1fr; + /* column-gap: 3rem; */ +} + +.testimonials { + background-color: lightpink; + display: grid; + grid-template-columns: 1fr 1fr; + gap: 2rem; +} + +.review-box { + padding: 1rem; + background-color: lightyellow; +} + +.review-box > img { + width: 6rem; + border-radius: 50%; + margin-bottom: 2rem; +} + +.review-content { + margin-bottom: 2rem; + font-size: 1.25rem; +} + +.author { + font-weight: 500; +} + +/* Gallery */ + +.gallery { + background-color: lightsalmon; +}