Skip to content

Style collage section with gradient cards and hover effects#5

Draft
Copilot wants to merge 2 commits intomasterfrom
copilot/update-collage-html-css
Draft

Style collage section with gradient cards and hover effects#5
Copilot wants to merge 2 commits intomasterfrom
copilot/update-collage-html-css

Conversation

Copy link
Contributor

Copilot AI commented Nov 20, 2025

The collage section had placeholder text and no CSS styling beyond basic flexbox layout.

Changes

HTML (index.html)

  • Removed debug text ("left", "middle", "right", "collage")
  • Capitalized card labels

CSS (styles/collage.css)

  • Styled 5 collage cards with gradient backgrounds using site's pink (#EEAECA) and blue (#94BBE9) color scheme
  • Added hover effects with translateY(-5px) and box shadows
  • Applied typography: Poppins for body cards, Anton for emphasis cards (Edge, Energy)
  • Configured flexbox layout with 20px gaps and 30px border-radius
.silent-card {
    background: linear-gradient(135deg, rgba(148, 187, 233, 0.6) 0%, rgba(238, 174, 202, 0.4) 100%);
    border-radius: 30px;
    /* ... */
}

.silent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(148, 187, 233, 0.3);
}

Screenshots

Before
Before

After
After

Hover effect
Hover

Original prompt

This section details on the original issue you should resolve

<issue_title># Collage need some updates</issue_title>
<issue_description>Need some changes in the collage section of HTML and CSS
</issue_description>

Comments on the Issue (you are @copilot in this section)


💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.

@coderabbitai
Copy link

coderabbitai bot commented Nov 20, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Comment @coderabbitai help to get the list of available commands and usage tips.

…ects

Co-authored-by: mrcoder36 <98886672+mrcoder36@users.noreply.github.com>
Copilot AI changed the title [WIP] Update collage section of HTML and CSS Style collage section with gradient cards and hover effects Nov 20, 2025
Copilot AI requested a review from vishalssh November 20, 2025 18:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

# Collage need some updates

2 participants