{"id":28718093,"url":"https://github.com/aymansoliman-dev/blog-preview-card","last_synced_at":"2025-06-15T04:10:13.641Z","repository":{"id":250226926,"uuid":"833846222","full_name":"aymansoliman-dev/Blog-preview-card","owner":"aymansoliman-dev","description":"Frontend Mentor Blog Preview Card","archived":false,"fork":false,"pushed_at":"2025-05-27T15:00:51.000Z","size":284,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-27T15:49:10.215Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://aymansoliman-dev.github.io/Blog-preview-card/","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/aymansoliman-dev.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":"2024-07-25T22:06:12.000Z","updated_at":"2025-05-27T15:01:04.000Z","dependencies_parsed_at":"2024-07-26T01:13:11.650Z","dependency_job_id":"a882d06e-ed99-45d8-bb07-18b94fde7d76","html_url":"https://github.com/aymansoliman-dev/Blog-preview-card","commit_stats":null,"previous_names":["ayman-soliman-1783/blog-preview-card","aymansoliman-dev/blog-preview-card"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/aymansoliman-dev/Blog-preview-card","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aymansoliman-dev%2FBlog-preview-card","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aymansoliman-dev%2FBlog-preview-card/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aymansoliman-dev%2FBlog-preview-card/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aymansoliman-dev%2FBlog-preview-card/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aymansoliman-dev","download_url":"https://codeload.github.com/aymansoliman-dev/Blog-preview-card/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aymansoliman-dev%2FBlog-preview-card/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259919544,"owners_count":22932075,"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":[],"created_at":"2025-06-15T04:10:13.129Z","updated_at":"2025-06-15T04:10:13.621Z","avatar_url":"https://github.com/aymansoliman-dev.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Frontend Mentor - Blog preview card solution\n\nThis is a solution to the [Blog preview card challenge on Frontend Mentor](https://www.frontendmentor.io/challenges/blog-preview-card-ckPaj01IcS). 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  \n## Overview\n\n### The challenge\n\nUsers should be able to:\n\n- See hover and focus states for all interactive elements on the page\n\n### Screenshot\n\n![Design Screenshot](/design/Screenshot_12-3-2025_211451_127.0.0.1.jpeg)\n\n### Links\n\n- Solution URL: [Blog Preview Card Solution](https://www.frontendmentor.io/solutions/blog-preview-card-with-stylish-transitions-and-selection-phVn9qXm8f)\n- Live Site URL: [Live Preview](https://aymansoliman-dev.github.io/Blog-preview-card/)\n\n## My process\n\n### Built with\n\n- Semantic HTML5 markup\n- CSS custom properties\n- Flexbox\n- CSS Transitions\n- Colorful selection pseudo-element\n\n### What I learned\n\nWorking on the Blog Preview Card project helped me improve my skills in Flexbox, responsive design, and typography. I used CSS custom properties, and subtle hover effects to enhance usability and maintainability. This project reinforced my understanding of layout structuring and interactive design.\n\n```html\n\u003cdiv class=\"container\"\u003e\n  \u003cimg\n    src=\"assets/images/illustration-article.svg\"\n    alt=\"article-illustration\"\n  /\u003e\n  \u003cspan\u003eLearning\u003c/span\u003e\n  \u003cp\u003ePublished 21 Dec 2023\u003c/p\u003e\n\n  \u003ch2\u003eHTML \u0026 CSS foundations\u003c/h2\u003e\n  \u003cp\u003e\n    These languages are the backbone of every website, defining structure,\n    content, and presentation. Greg Hooper\n  \u003c/p\u003e\n  \u003cdiv class=\"avatar\"\u003e\n    \u003cimg src=\"assets/images/image-avatar.webp\" alt=\"Greg Hooper\" /\u003e\n    \u003ch5\u003eGreg Hooper\u003c/h5\u003e\n  \u003c/div\u003e\n\u003c/div\u003e\n```\n\n```css\n.container:hover {\n    transform: translate(-0.5rem, -0.5rem);\n    box-shadow: 1.5rem 1.5rem 0 0 black;\n}\n\n*::selection {\n    background-color: #f5d04e;\n    color: white;\n}\n```\n\n### Continued development\n\nFor continued development, I plan to explore CSS animations to add subtle motion effects for a more dynamic user experience. Additionally, I want to refine my approach to accessibility by improving keyboard navigation and contrast ratios. I will also experiment with CSS Grid for more complex layouts and optimize performance by minimizing CSS redundancy.\n\n## Author\n\n- Website - [Ayman Soliman](https://bento.me/ayman-soliman)\n- Frontend Mentor - [aymansoliman-dev](https://www.frontendmentor.io/profile/aymansoliman-dev)\n- Twitter - [@a_soliman1783](https://x.com/a_soliman1783)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faymansoliman-dev%2Fblog-preview-card","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faymansoliman-dev%2Fblog-preview-card","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faymansoliman-dev%2Fblog-preview-card/lists"}