From 42f3eb946bed806af2fbc4286310a6d24ac66c77 Mon Sep 17 00:00:00 2001 From: Sawan Date: Tue, 5 Nov 2024 13:42:57 +0530 Subject: [PATCH] Added text to speech feature in blog article --- blog.html | 464 +++++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 374 insertions(+), 90 deletions(-) diff --git a/blog.html b/blog.html index 9a5e9838..fbfbd640 100644 --- a/blog.html +++ b/blog.html @@ -31,7 +31,6 @@ - @@ -627,112 +626,397 @@

Register to join us....

--> -

All Blog Posts

- - - - + #blog-pic { + max-width: 50%; + } -

All Blog Posts

- Add New Blog -
+ /* Card Styling */ + .card { + background-color: #ffffff; + color: #1a202c; + border-radius: 0.75rem; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); + overflow: hidden; + transition: transform 0.3s, box-shadow 0.3s; + display: flex; + flex-direction: column; + height: 100%; + } + + /* Hover Effect */ + .card:hover { + transform: translateY(-5px); + box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15); + } - + // Initial fetch of blog posts + fetchBlogs(); + + +