{"id":18301057,"url":"https://github.com/j11tendra/easybank","last_synced_at":"2025-04-09T09:44:41.166Z","repository":{"id":195387210,"uuid":"679963193","full_name":"J11tendra/EasyBank","owner":"J11tendra","description":"Frontend Mentor EasyBank Landing Page.","archived":false,"fork":false,"pushed_at":"2023-09-17T17:06:45.000Z","size":407,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-15T03:46:25.262Z","etag":null,"topics":["frontend","frontend-mentor","html-css-javascript","scss","web","webdevelopment","website-design"],"latest_commit_sha":null,"homepage":"https://easy-bank.pages.dev/","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/J11tendra.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}},"created_at":"2023-08-18T02:59:51.000Z","updated_at":"2024-05-03T04:50:12.000Z","dependencies_parsed_at":"2023-09-17T18:41:08.172Z","dependency_job_id":null,"html_url":"https://github.com/J11tendra/EasyBank","commit_stats":null,"previous_names":["j11tendra/easybank"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/J11tendra%2FEasyBank","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/J11tendra%2FEasyBank/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/J11tendra%2FEasyBank/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/J11tendra%2FEasyBank/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/J11tendra","download_url":"https://codeload.github.com/J11tendra/EasyBank/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248017745,"owners_count":21034041,"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":["frontend","frontend-mentor","html-css-javascript","scss","web","webdevelopment","website-design"],"created_at":"2024-11-05T15:14:17.894Z","updated_at":"2025-04-09T09:44:41.127Z","avatar_url":"https://github.com/J11tendra.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# EasyBank - Making banking easy!!\n\nEasyBank is Frontend Mentor laid around basic layout concepts and JavaScript functionality.\n\n\n## Table of Content\n\n* [Overview](#overview)\n  *  [The Challenge](#challenge)\n  *  [Screenshots](#screenshots)\n  *  [Website Preview Links](#livepreview)\n  * [Features](#features)\n\n\n* [My Process](#process)\n  *  [Build with](#builtwith)\n  *  [My Learnings](#mylearning)\n\n*  [Author](#author)\n*  [Acknowledgements](#builtwith)\n*  [Useful Links](#usefullinks)\n\n\n## Overview[](#overview)\n\n**The Challenge**\n\nEasyBank was my very first Web development project where I found the workflow of media queries difficult to grasp.\n\n\n**Screenshots**\n\n![desktop-preview](https://github.com/J11tendra/Easy-Bank/assets/108735984/944a1ac7-8939-4375-92b5-9079639855e5)\n\n![mobile-navigation](https://github.com/J11tendra/Easy-Bank/assets/108735984/41e6b71a-1f4d-442f-be17-9ce9d85a0690)\n\n\n\n**Website Preview Link**\n\n#### Url: [Visit Website](https://easy-bank.pages.dev/)\n\n**Features**\n\n-  Fully responsive website\n-  Sematic HTML5 markdown\n-  Scalable clean code\n-  Mobile first approach\n-  Multipage\n\n\n## My Process\n\n\n\n**Built with**\n\n![javascript4](https://github.com/J11tendra/Intrinsic/assets/108735984/4437a469-39cc-4707-a183-d10e08767a7a)\n![scss3](https://github.com/J11tendra/Intrinsic/assets/108735984/a9245cf8-a5e6-48a1-ac37-2598486cd68b)\n\n\n\n**My learnings**\n\nThis project has been my learning ground as it pushed me to research about the bugs i encounter during development and found out some better methods to deal with the project.\n\nI figure out the better semantic way to center the buttons.\n\n\n    \u003c!-- I have the global style for buttons designs. --\u003e\n    \u003c!-- The \u003ca\u003e tag is the link to call to action. --\u003e\n    a {\n        color: $black;\n        margin: 0 auto;\n        font-weight: $reg;\n\n        @include breakpoint-up(medium) {\n            font-size: $font-5;\n        }\n    }\n\nI used margin auto for images and had its max-width set to some rem.\n\n    \u003c!-- This is a container for all shop items --\u003e\n\n    \u0026__container {\n        margin: 0 auto;\n        max-width: 25rem;\n        width: 100%;\n\n        @include breakpoint-up(medium) {\n            max-width: 48rem;\n        }\n\n        @include breakpoint-up(large) {\n            max-width: 80rem;\n        }\n\n        @include breakpoint-up(x-large) {\n            max-width: 110rem;\n        }\n    }\n\nFor the individual card\n\n\n    \u003c!-- This is individual shop item which adapts to display sizes --\u003e\n\n         \u0026__01 {\n                height: 15rem;\n                max-width: 11.5625rem;\n                width: 100%;\n                border-radius: 0.25rem;\n                background-color: $very-light-gray;\n                box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);\n\n                @include breakpoint-up(medium) {\n                    height: 26.5rem;\n                    max-width: 22.8125rem;\n                }\n\n                @include breakpoint-up(large) {\n                    height: 26.5rem;\n                    max-width: 29rem;\n                }\n\n                @include breakpoint-up(x-large) {\n                    height: 28.5rem;\n                    max-width: 30rem;\n                }\n        }\n\n\nThe Footer section which was challenging for lablet display. I used flex and column gap to stop the content from overflowing.\n\n    .links {\n        display: flex;\n        flex-direction: column;\n        gap: 1.5rem;\n        justify-content: space-between;\n        align-items: center;\n        margin: 3.75rem 0;\n\n        @include breakpoint-up(large) {\n            grid-area: links;\n            flex-direction: row;\n            align-items: flex-start;\n            gap: 4rem;\n            text-align: left;\n            margin: 0 0 3.75rem 0;\n        }\n\n        @include breakpoint-up(x-large) {\n            gap: 8rem;\n        }\n    }\n    \n## Author\n\nWebsite Design: Frontend Mentor\n\nDevelopment: Jitendra Choudhary\n\n\n## Acknowledgement\n\nFinally I'd like to thanks all resources i used during the development process that includes all Fontawesome icons and Freepik images.\n\n\n## Useful Links\n\n_If you would like to improve the project or have a suggestions, feedback or issues. Feel free to contact me on the above links and i'd happy to respond._\n\nEmail: [Jitendra Choudhary](info.jiitendra@gmail.com)\n\nTwitter: [JiitendraC](https://twitter.com/JiitendraC)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fj11tendra%2Feasybank","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fj11tendra%2Feasybank","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fj11tendra%2Feasybank/lists"}