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

FIxed the cards to take proper width #1627

Merged
merged 1 commit into from
Oct 23, 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
1 change: 1 addition & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -456,6 +456,7 @@ body {
}

.card {
width: 333px;
background: var(--card);
border-radius: 8px;
color: var(--head);
Expand Down
35 changes: 16 additions & 19 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1873,7 +1873,7 @@ <h1>Have a <span>Feedback?</span></h1>

<button id="scrollToTopBtn" title="Go to top"><i class="ri-arrow-up-double-fill"></i></button>


<div class="projects-container">
<a href="./projects/Flappy Bird/index.html" class="card">
<div class="card-cover counter-cover-colour">
<img src="assets/image/flappybird.png" alt="Flappy Bird" />
Expand Down Expand Up @@ -2286,22 +2286,19 @@ <h3 class="card-heading">Bubble Hit Game</h3>
</p>
</div>
</a>
<!--============================== End =========================================== -->

<!--============================== End =========================================== -->
<a href="./projects/Chatbot/index.html" class="card" target="_blank">
<div class="card-cover counter-cover-colour">
<img src="./assets/image/chat-7767693_1280.jpg" alt="chatbot" />
</div>
<div class="card-content">
<h3 class="card-heading">Chatbot</h3>
<p class="card-description">
A simple chatbot. <br />
<strong>
Please use your own google gemini api key for the chatbot to
work.
</strong>
</p>
</div>
<div class="card-cover counter-cover-colour">
<img src="./assets/image/chat-7767693_1280.jpg" alt="chatbot" />
</div>
<div class="card-content">
<h3 class="card-heading">Chatbot</h3>
<p class="card-description">
A simple chatbot.<b>Please use your own google gemini api key for the chatbot to
work</b>
</p>
</div>
</a>

<a href="./projects/Relaxio" class="card">
Expand Down Expand Up @@ -2387,10 +2384,7 @@ <h3 class="card-heading">3D Music Visualizer</h3>
Experience the most realistic 3D music visualizer.
</p>
</div>
</a>



</a>


<!-- =========================== Recipe Book ================================= -->
Expand All @@ -2405,6 +2399,7 @@ <h3 class="card-heading">Recipe Book</h3>
</p>
</div>
</a>

<!-- =========================== ================================= -->

<a href="projects/Othello/index.html" class="card" target="_blank">
Expand All @@ -2429,6 +2424,8 @@ <h3 class="card-heading">Eigen Value and Vector Calculator</h3>
</p>
</div>
</a>
</div>

</section>
<!--============================== End =========================================== -->

Expand Down
Loading