{"id":31766255,"url":"https://github.com/ayokanmi-adejola/order-summary-component","last_synced_at":"2025-10-10T00:30:31.418Z","repository":{"id":301122661,"uuid":"983493429","full_name":"Ayokanmi-Adejola/Order-summary-component","owner":"Ayokanmi-Adejola","description":"A responsive card component built with HTML and CSS that showcases an order summary for a music subscription service. Features hover states for interactive elements and adapts to different screen sizes.","archived":false,"fork":false,"pushed_at":"2025-07-14T12:23:36.000Z","size":134,"stargazers_count":7,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-30T00:00:40.008Z","etag":null,"topics":["css3","flexbox-layout","google-fonts","html5","mobile-first-workflow"],"latest_commit_sha":null,"homepage":"https://order-summary-component-seven-lemon.vercel.app","language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Ayokanmi-Adejola.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"zenodo":null}},"created_at":"2025-05-14T13:13:51.000Z","updated_at":"2025-08-27T21:06:56.000Z","dependencies_parsed_at":"2025-06-25T09:26:15.818Z","dependency_job_id":"f3fe6127-fab5-433d-b4c8-2062f2f689ae","html_url":"https://github.com/Ayokanmi-Adejola/Order-summary-component","commit_stats":null,"previous_names":["ayokanmi-adejola/order-summary-component"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Ayokanmi-Adejola/Order-summary-component","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ayokanmi-Adejola%2FOrder-summary-component","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ayokanmi-Adejola%2FOrder-summary-component/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ayokanmi-Adejola%2FOrder-summary-component/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ayokanmi-Adejola%2FOrder-summary-component/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Ayokanmi-Adejola","download_url":"https://codeload.github.com/Ayokanmi-Adejola/Order-summary-component/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ayokanmi-Adejola%2FOrder-summary-component/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279002359,"owners_count":26083356,"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","status":"online","status_checked_at":"2025-10-09T02:00:07.460Z","response_time":59,"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":["css3","flexbox-layout","google-fonts","html5","mobile-first-workflow"],"created_at":"2025-10-10T00:30:03.287Z","updated_at":"2025-10-10T00:30:31.411Z","avatar_url":"https://github.com/Ayokanmi-Adejola.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Frontend Mentor - Order summary card solution\n\nThis is a solution to the [Order summary card challenge on Frontend Mentor](https://www.frontendmentor.io/challenges/order-summary-component-QlPmajDUj) Frontend Mentor challenges help you improve your coding skills by building realistic projects.\n\n\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\n\n### Screenshot\n\n![Desktop View](./design/desktop-preview.jpg)\n\n\n## My process\n\n### Built with\n\n- Semantic HTML5 markup\n- CSS custom properties\n- Flexbox\n- Mobile-responsive design\n- Google Fonts\n\n### What I learned\n\nThis project helped me improve my skills in creating responsive components that adapt to different screen sizes. I learned how to:\n\n- Structure HTML semantically for better accessibility\n- Use Flexbox for layout positioning\n- Implement hover states for interactive elements\n- Create responsive designs with media queries\n- Work with SVG background patterns\n\nSome code snippets I'm proud of:\n\n```html\n\u003cdiv class=\"plan-container\"\u003e\n  \u003cdiv class=\"plan-info\"\u003e\n    \u003cimg src=\"./images/icon-music.svg\" alt=\"Music icon\" class=\"music-icon\"\u003e\n    \u003cdiv class=\"plan-details\"\u003e\n      \u003ch2\u003eAnnual Plan\u003c/h2\u003e\n      \u003cp\u003e$59.99/year\u003c/p\u003e\n    \u003c/div\u003e\n  \u003c/div\u003e\n  \u003ca href=\"#\" class=\"change-link\"\u003eChange\u003c/a\u003e\n\u003c/div\u003e\n```\n\n```css\n.plan-container {\n  background-color: hsl(225, 100%, 98%); /* Very pale blue */\n  border-radius: 12px;\n  padding: 16px;\n  display: flex;\n  justify-content: space-between;\n  align-items: center;\n  margin-bottom: 32px;\n}\n\n.btn-primary:hover {\n  opacity: 0.8;\n}\n```\n\n### Continued development\n\nIn future projects, I want to focus on:\n\n- Improving my CSS animations and transitions\n- Implementing more advanced responsive design techniques\n- Exploring CSS Grid for more complex layouts\n- Enhancing accessibility features\n\n### Useful resources\n\n- [MDN Web Docs](https://developer.mozilla.org/en-US/) - Comprehensive reference for HTML, CSS, and JavaScript.\n- [CSS-Tricks Flexbox Guide](https://css-tricks.com/snippets/css/a-guide-to-flexbox/) - Excellent visual guide to Flexbox.\n- [Google Fonts](https://fonts.google.com/) - For typography options.\n\n## Author\n\n- Frontend Mentor - [@Ayokanmi-Adejola](https://www.frontendmentor.io/profile/Ayokanmi-Adejola)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fayokanmi-adejola%2Forder-summary-component","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fayokanmi-adejola%2Forder-summary-component","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fayokanmi-adejola%2Forder-summary-component/lists"}