{"id":23377585,"url":"https://github.com/mayen007/nft-preview-card","last_synced_at":"2026-04-28T18:34:09.618Z","repository":{"id":263311796,"uuid":"889952291","full_name":"Mayen007/NFT-Preview-Card","owner":"Mayen007","description":"A responsive NFT preview card component built with HTML and CSS. The project showcases an interactive design with hover effects and a mobile-first approach. It displays an NFT image, title, price, and creator info, following the challenge by Frontend Mentor.","archived":false,"fork":false,"pushed_at":"2024-11-17T18:50:58.000Z","size":951,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-14T03:19:22.782Z","etag":null,"topics":["accessibility","beginner-friendly","card-component","css-variables","css3","flexbox","frontend-mentor","frontendmentor-challenge","hover-effects","html-css","html5","mobile-first","ui-design","web-development"],"latest_commit_sha":null,"homepage":"https://mayen007.github.io/NFT-Preview-Card/","language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Mayen007.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-11-17T16:51:06.000Z","updated_at":"2024-11-17T18:51:01.000Z","dependencies_parsed_at":"2024-11-18T08:16:20.648Z","dependency_job_id":null,"html_url":"https://github.com/Mayen007/NFT-Preview-Card","commit_stats":null,"previous_names":["mayen007/nft-preview-card"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mayen007%2FNFT-Preview-Card","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mayen007%2FNFT-Preview-Card/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mayen007%2FNFT-Preview-Card/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mayen007%2FNFT-Preview-Card/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Mayen007","download_url":"https://codeload.github.com/Mayen007/NFT-Preview-Card/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247779790,"owners_count":20994569,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["accessibility","beginner-friendly","card-component","css-variables","css3","flexbox","frontend-mentor","frontendmentor-challenge","hover-effects","html-css","html5","mobile-first","ui-design","web-development"],"created_at":"2024-12-21T18:15:55.976Z","updated_at":"2026-04-28T18:34:04.593Z","avatar_url":"https://github.com/Mayen007.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Frontend Mentor - NFT Preview Card Component Solution\n\nThis is a solution to the [NFT Preview Card Component Challenge on Frontend Mentor](https://www.frontendmentor.io/challenges/nft-preview-card-component-SbdUL_w0U). This project helps you practice responsive web design and CSS hover effects.\n\n## Table of Contents\n\n- [Overview](#overview)\n  - [The Challenge](#the-challenge)\n  - [Screenshot](#screenshot)\n  - [Links](#links)\n- [My Process](#my-process)\n  - [Built With](#built-with)\n  - [What I Learned](#what-i-learned)\n  - [Continued Development](#continued-development)\n  - [Useful Resources](#useful-resources)\n- [Author](#author)\n- [Acknowledgments](#acknowledgments)\n\n## Overview\n\n### The Challenge\n\nUsers should be able to:\n\n- View the optimal layout depending on their device's screen size.\n- See hover states for interactive elements like the image overlay and clickable text.\n\n### Screenshot\n\n![Screenshot of the NFT Preview Card Component](./Assets/images/desktop-view.png)\n\n### Links\n\n- [Solution URL](https://github.com/Mayen007/NFT-Preview-Card) - View the code on GitHub\n- [Live Site URL](https://mayen007.github.io/NFT-Preview-Card/) - Check out the live demo\n\n## My Process\n\n### Built With\n\n- **HTML5** for the structure\n- **CSS3** for styling, with a focus on:\n  - Flexbox for layout control\n  - CSS variables for maintainable color management\n  - Custom font integration using the \"Outfit\" font family\n  - Hover effects for interactive elements\n- **Responsive Design** using a mobile-first workflow\n\n### What I Learned\n\nThis project was a great way to practice working with:\n\n1. **CSS Variables:** Using variables for colors made it easy to maintain consistency across the design.\n   ```css\n   :root {\n     --cyan: hsl(178, 100%, 50%);\n   }\n   ```\n2. **Hover Effects:** Adding an overlay effect on the image during hover.\n\n```CSS\n.image-container:hover .overlay {\n  display: flex;\n  cursor: pointer;\n}\n```\n\n3. **Flexbox Layouts:** Implementing Flexbox for elements like the value and time section.\n\n```CSS\n.value-time-div {\n  display: flex;\n  justify-content: space-between;\n}\n```\n\n### Continued Development\n\nMoving forward, I plan to:\n\n- Experiment with **CSS Grid** for more complex layouts in future projects.\n- Enhance the accessibility of components by adding ARIA labels and better alt text descriptions.\n- Improve my skills in using **JavaScript** to add dynamic content and interactivity to similar projects.\n\n### Useful Resources\n\n- [MDN Web Docs - Flexbox Guide](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Flexible_Box_Layout/Basic_Concepts_of_Flexbox) - Helped in understanding how to effectively use Flexbox for layout control.\n- [The Markdown Guide](https://www.markdownguide.org/) - Assisted in formatting this README.\n\n## Author\n\n- GitHub - [Mayen007](https://github.com/Mayen007)\n- Frontend Mentor - [@Mayen007](https://www.frontendmentor.io/profile/Mayen007)\n\n## Acknowledgments\n\nThanks to Frontend Mentor for the great challenge. This project was a good exercise in practicing fundamental HTML and CSS skills.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmayen007%2Fnft-preview-card","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmayen007%2Fnft-preview-card","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmayen007%2Fnft-preview-card/lists"}