{"id":20809882,"url":"https://github.com/rayyannafees/fm-lvl-1","last_synced_at":"2026-02-26T12:04:52.979Z","repository":{"id":245711334,"uuid":"819026647","full_name":"RayyanNafees/fm-lvl-1","owner":"RayyanNafees","description":"Frontend Mentors Recipe Page Challenge","archived":false,"fork":false,"pushed_at":"2024-06-24T12:42:38.000Z","size":1419,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-29T00:16:11.882Z","etag":null,"topics":["frontend-mentor","frontendmentor","frontendmentor-challenge","vanilla","web"],"latest_commit_sha":null,"homepage":"https://rayyannafees.github.io/fm-lvl-1/","language":"HTML","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/RayyanNafees.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}},"created_at":"2024-06-23T15:10:07.000Z","updated_at":"2024-06-24T12:42:41.000Z","dependencies_parsed_at":null,"dependency_job_id":"7f2cc8e7-e9df-49bc-ad76-503302f9266a","html_url":"https://github.com/RayyanNafees/fm-lvl-1","commit_stats":null,"previous_names":["rayyannafees/fm-lvl-1"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/RayyanNafees/fm-lvl-1","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RayyanNafees%2Ffm-lvl-1","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RayyanNafees%2Ffm-lvl-1/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RayyanNafees%2Ffm-lvl-1/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RayyanNafees%2Ffm-lvl-1/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RayyanNafees","download_url":"https://codeload.github.com/RayyanNafees/fm-lvl-1/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RayyanNafees%2Ffm-lvl-1/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29858461,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-26T08:51:08.701Z","status":"ssl_error","status_checked_at":"2026-02-26T08:50:19.607Z","response_time":89,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["frontend-mentor","frontendmentor","frontendmentor-challenge","vanilla","web"],"created_at":"2024-11-17T20:18:05.662Z","updated_at":"2026-02-26T12:04:52.953Z","avatar_url":"https://github.com/RayyanNafees.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Frontend Mentor - Recipe page solution\n\nThis is a solution to the [Recipe page challenge on Frontend Mentor](https://www.frontendmentor.io/challenges/recipe-page-KiTsR8QQKm). Frontend Mentor challenges help me improve my 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### Screenshot\n\n![](./screenshot.png)\n\n### Links\n\n- Solution URL: [github.com/RayyanNafees/fm-lvl-1](https://github.com/RayyanNafees/fm-lvl-1)\n- Live Site URL: [Github Pages](https://rayyannafees.github.io/fm-lvl-1) , [Surge](https://fm-recipe-page.surge.sh/)\n\n## My process\n\nI started out by first defining all the colors \u0026 typography to my [themes.css](./src/themes.css) file with al the default styles. And then added all the markup roughly in the html and started customizing each section individually in [style.css](./src/style.css)\n\n### Built with\n\n- Semantic HTML5 markup\n- CSS pseudo elements\n- CSS pseudo selectors\n- Mobile-first workflow\n\n### What I learned\n\n#### 1. List Markers\n\nI learnt using the `li::marker` CSS selector for customizing lists\n\n```css\nli::marker {\n  color: papayawhip;\n}\n```\n\n#### 2. Bordered tables\n\nI learnt on how to create those beautiful bordered tables\n\n```css\ntable {\n  border-collapse: collapse;\n  width: 100%;\n\n  td {\n    border-bottom: 1px solid var(--light-grey);\n    padding: 0.5ch 1ch;\n  }\n\n  tr:last-child td {\n    border-bottom: none;\n  }\n}\n```\n\n### Continued development\n\nI want to continue my learning and development practice on mobile-first \u0026 responsive units \u0026 media queries\n\n### Useful resources\n\n- [CSS tricks li element](https://css-tricks.com/list-style-recipes/) - This helped me knowing how to style the list marker.\n- [A Guide to Styling Tables](https://dev.to/madsstoumann/a-guide-to-styling-tables-28d2?ref=dailydev) - This is an amazing article which helped me finally understand customizing tables. I'd recommend it to anyone still learning this concept.\n\n## Author\n\n- Website - [RayyanNafees](https://rayyannafees.github.io)\n- Frontend Mentor - [@RayyanNafees](https://www.frontendmentor.io/profile/RayyanNafees)\n- Twitter - [@NafeesRayyan](https://www.twitter.com/NafeesRayyan)\n- Github - [RayyanNafees](https://github.com/RayyanNafees)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frayyannafees%2Ffm-lvl-1","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frayyannafees%2Ffm-lvl-1","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frayyannafees%2Ffm-lvl-1/lists"}