This is a solution to the Order summary card challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.
Note: Delete this note and update the table of contents based on what sections you keep.
Users should be able to:
- See hover states for interactive elements
- Live Site URL: CLICK HERE
- Code from the outside to inside.
- Semantic HTML5 markup
- CSS custom properties
- Flexbox
- CSS Grid
- Mobile-first workflow
I learned how to manipulate containers and use hover states.
<div class="payment-buttons">
<div class="proceed-button">
<p class="proceed-button-content">Proceed to Payment</p>
</div>
<div class="cancel-button">
<p class="cancel-button-content">Cancel Order</p>
</div>
</div>
.plan-container {
display: flex;
align-items: center;
background-color: hsl(225, 100%, 98%);
width: 360px;
padding: 24px;
justify-content: space-between;
border-radius: 12px;
}
- Website - Henry Le