{"id":19724840,"url":"https://github.com/cromega08/nft_preview_card","last_synced_at":"2026-06-08T01:32:00.211Z","repository":{"id":106334288,"uuid":"492268569","full_name":"cromega08/nft_preview_card","owner":"cromega08","description":"A Preview Card for NFT. Challenge from Frontend Mentor.","archived":false,"fork":false,"pushed_at":"2022-05-17T22:04:44.000Z","size":249,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-28T01:15:24.588Z","etag":null,"topics":["100-days-of-code","100-days-of-dailyui","100daysofcode","100daysofdailyui","css","css-grid","css3","design","frontend","frontend-mentor","frontendmentor","frontendmentor-challenge","html","html-css","html5","nft","nft-gallery","nfts"],"latest_commit_sha":null,"homepage":"https://cromega08.github.io/nft_preview_card/","language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cromega08.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":"2022-05-14T16:27:44.000Z","updated_at":"2023-03-24T18:55:45.000Z","dependencies_parsed_at":null,"dependency_job_id":"b625b3b4-d82f-4e7b-a5f1-58aec3f319b0","html_url":"https://github.com/cromega08/nft_preview_card","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/cromega08/nft_preview_card","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cromega08%2Fnft_preview_card","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cromega08%2Fnft_preview_card/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cromega08%2Fnft_preview_card/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cromega08%2Fnft_preview_card/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cromega08","download_url":"https://codeload.github.com/cromega08/nft_preview_card/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cromega08%2Fnft_preview_card/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34044919,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-07T02:00:07.652Z","response_time":124,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["100-days-of-code","100-days-of-dailyui","100daysofcode","100daysofdailyui","css","css-grid","css3","design","frontend","frontend-mentor","frontendmentor","frontendmentor-challenge","html","html-css","html5","nft","nft-gallery","nfts"],"created_at":"2024-11-11T23:27:19.305Z","updated_at":"2026-06-08T01:32:00.193Z","avatar_url":"https://github.com/cromega08.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). Frontend Mentor challenges help you improve your coding skills by building realistic projects. \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### 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\n\n### Screenshot\n\n![Cromega_Solution](/design/Cromega_Solution.png)\n\n### Links\n\n- Solution URL: [Nft_Preview_Card](https://github.com/cromega08/nft_preview_card)\n- Live Site URL: [CodePen](https://codepen.io/cromega08/pen/wvyJJyG)\n\n## My process\n\nThe process was complicated. At start i accomplish to design the card, was really easy and love it the design. The problem was the responsive design, i didn't know how to do a webpage responsive until now, so push myself to study and ended burnedout and without the ability (xd).\n\n### Built with\n\n- Semantic HTML5 markup\n- CSS custom properties\n- CSS @media queries\n- CSS Grid\n- Webpage-first workflow\n\n\n### What I learned\n\nAs mentioned before, the main thing i learned was responsive design.\n\nHad problems with the condition of make it responsive for diferents screen sizes because the card scaled with the screen size, but figured out how to resolve it.\n\nMy first implementation of a @media query in css:\n\n~~~\n@media (max-width: 401px) {\n    body {\n        justify-items: left;\n    }\n    section {\n        width: 72.5vw;\n        padding: 3vh 10vw;\n    }\n    \n    aside \u003e div {\n        width: 90vw;\n        padding: .275em\n    }\n    \n    footer {\n        font-size: 1.15em;\n        justify-self: center;\n    }\n\n    label \u003e img {\n        width: 77.5vw;\n    }\n\n    #background {\n        width: 77.5vw;\n    }\n\n    #offer {\n        width: 75vw;\n        margin: 0 .5em;\n        font-size: 1.1em;\n    }\n\n    #creator {\n        width: 75vw;\n        padding-top: 1em;\n    }\n\n    #title {\n        font-size: 1.5em;\n        margin: 0;\n        margin-top: .35em;\n    }\n\n    #limit {\n        font-size: 1.3em;\n    }\n\n    #author {\n        font-size: 1.3em;\n    }\n    #description {\n        font-size: 1.3em;\n        margin: 0;\n        margin-top: .3em;\n    }\n~~~\n\n### Continued development\n\nI want to continue learning everything i can, actually.\n\nIn things related to this project, want to learn more responsive design and conquer it.\n\n### Useful resources\n\n- [Learn Responsive Design](https://web.dev/learn/design/) - this website definitely help and motivated me to understanded how to make responsive design. Only learned \"@media queries\" until date, but feel pretty confident with my evolution.\n\n## Author\n\n- Github - [Cromega08](https://github.com/cromega08)\n- Frontend Mentor - [@cromega08](https://www.frontendmentor.io/profile/cromega08)\n- CodePen - [Cromega08](https://codepen.io/cromega08)\n- Hashnode - [@Cromega08](https://hashnode.com/@Cromega08)\n\n\n## Acknowledgments\n\nI wanna thank me, because i managed to accomplish this challenge.\n\n***_Superbus et Hedonistic~_***\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcromega08%2Fnft_preview_card","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcromega08%2Fnft_preview_card","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcromega08%2Fnft_preview_card/lists"}