Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Scroll bar done #123

Merged
merged 2 commits into from
Jan 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added dist/chatbot.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 6 additions & 6 deletions dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
<body class="bg-black">

<section
class="bg-gradient-to-r from-gray-700 via-gray-900 to-black text-white font-grotesk overflow-hidden"
class="overflow-y-hidden bg-gradient-to-r from-gray-700 via-gray-900 to-black text-white font-grotesk overflow-hidden"
>
<header class="bg-transparent backdrop-blur-sm w-screen fixed z-50">
<header class="bg-transparent backdrop-blur-sm w-screen fixed z-50 overflow-y-hidden">
<div class="mx-auto max-w-screen-xl px-4 sm:px-6 lg:px-8 ">

<div class="flex h-24 items-center justify-between">
Expand Down Expand Up @@ -123,7 +123,7 @@
</header>
<div
id="headerDropList"
class="w-1/3 sm:w-64 min-w-min transition-all rounded-xl rounded-tr-none fixed h-[0] right-[3%] top-[13%] z-50 bg-transparent backdrop-blur-sm block md:hidden overflow-hidden"
class="overflow-y-hidden w-1/3 sm:w-64 min-w-min transition-all rounded-xl rounded-tr-none fixed h-[0] right-[3%] top-[13%] z-50 bg-transparent backdrop-blur-sm block md:hidden overflow-hidden"
>
<ul class="h-full flex-col justify-evenly">
<li
Expand Down Expand Up @@ -155,7 +155,7 @@
</ul>
</div>

<div class="w-screen px-4 py-32 lg:flex lg:h-screen lg:items-center">
<div class="overflow-y-hidden w-screen px-4 py-32 lg:flex lg:h-screen lg:items-center">
<div
class="mx-auto max-w-3xl text-center border border-transparent bg-gradient-to-r from-black via-gray-900 to-gray-700 rounded-3xl md:px-16 py-12"
lass="bg-cover" style="background-image: url('https://cdn.pixabay.com/photo/2016/12/29/18/44/background-1939128_1280.jpg');"
Expand Down Expand Up @@ -190,7 +190,7 @@
</section>
</div>

<footer class="bg-gray-300">
<footer class="bg-gray-300 overflow-y-hidden">
<div class="w-screen px-4 pb-8 pt-16 sm:px-6 lg:px-8">
<div class="mx-auto max-w-md">
<strong
Expand Down Expand Up @@ -319,7 +319,7 @@
</div>

<div
class="grid grid-cols-1 gap-8 text-center lg:grid-cols-3 lg:text-left"
class="grid grid-cols-1 gap-8 text-center lg:grid-cols-3 lg:text-left overflow-y-hidden"
>
<div>
<strong class="font-medium text-gray-900"> Services </strong>
Expand Down
5 changes: 3 additions & 2 deletions dist/problemsolving.html
Original file line number Diff line number Diff line change
Expand Up @@ -932,8 +932,9 @@ <h1 class="text-3xl font-bold mb-4">
>
<button class="scale-125">
<img
src="https://github.com/dakshsinghrathore/Brighter-Beginnings/assets/140843501/7678253c-722d-495a-a6dd-db5e6601b606"
alt=""
src="./chatbot.jpg"
alt="ChatBot"
style="border-radius: 40px;"
/>
</button>
</div>
Expand Down