By Claire Robinson
88 | Receive money in any currency with no fees 89 |The world is getting smaller and we’re becoming more mobile. So why should you be 90 | forced to only receive money in a single
91 |├── .gitignore ├── img ├── favicon-32x32.png ├── image-mockups.png ├── image-plane.jpg ├── image-confetti.jpg ├── image-currency.jpg ├── image-restaurant.jpg ├── icon-hamburger.svg ├── icon-close.svg ├── icon-facebook.svg ├── icon-youtube.svg ├── icon-twitter.svg ├── icon-pinterest.svg ├── icon-instagram.svg ├── icon-online.svg ├── bg-intro-mobile.svg ├── bg-intro-desktop.svg ├── icon-budgeting.svg ├── logo-white.svg ├── logo.svg ├── icon-onboarding.svg └── icon-api.svg ├── README.md ├── js └── script.js ├── style-guide.md ├── text.html ├── index.html └── css └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .DS_Store -------------------------------------------------------------------------------- /img/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/easy-bank/HEAD/img/favicon-32x32.png -------------------------------------------------------------------------------- /img/image-mockups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/easy-bank/HEAD/img/image-mockups.png -------------------------------------------------------------------------------- /img/image-plane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/easy-bank/HEAD/img/image-plane.jpg -------------------------------------------------------------------------------- /img/image-confetti.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/easy-bank/HEAD/img/image-confetti.jpg -------------------------------------------------------------------------------- /img/image-currency.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/easy-bank/HEAD/img/image-currency.jpg -------------------------------------------------------------------------------- /img/image-restaurant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/easy-bank/HEAD/img/image-restaurant.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # easy-bank Frontend mentor chanllange 2 | 3 | ## Demo 4 | [https://suspicious-bhaskara-9a9ab9.netlify.app/](https://suspicious-bhaskara-9a9ab9.netlify.app/) 5 | -------------------------------------------------------------------------------- /img/icon-hamburger.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/icon-close.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/icon-facebook.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/icon-youtube.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /js/script.js: -------------------------------------------------------------------------------- 1 | const navLinks = document.querySelector('.nav-links'); 2 | const hamburgerBtn = document.querySelector('.hamburger-btn'); 3 | const toggleImg = document.querySelector('#toggle-img'); 4 | 5 | hamburgerBtn.addEventListener('click', () => { 6 | navLinks.classList.toggle('open'); 7 | isOpen = navLinks.classList.contains('open'); 8 | if (isOpen) { 9 | toggleImg.src = './img/icon-close.svg'; 10 | } else { 11 | toggleImg.src = './img/icon-hamburger.svg'; 12 | } 13 | }) 14 | 15 | -------------------------------------------------------------------------------- /img/icon-twitter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /style-guide.md: -------------------------------------------------------------------------------- 1 | # Front-end Style Guide 2 | 3 | ## Layout 4 | 5 | The designs were created to the following widths: 6 | 7 | - Mobile: 375px 8 | - Desktop: 1440px 9 | 10 | ## Colors 11 | 12 | ### Primary 13 | 14 | - Dark Blue: hsl(233, 26%, 24%) 15 | - Lime Green: hsl(136, 65%, 51%) 16 | - Bright Cyan: hsl(192, 70%, 51%) 17 | 18 | ### Neutral 19 | 20 | - Grayish Blue: hsl(233, 8%, 62%) 21 | - Light Grayish Blue: hsl(220, 16%, 96%) 22 | - Very Light Gray: hsl(0, 0%, 98%) 23 | - White: hsl(0, 0%, 100%) 24 | 25 | ## Typography 26 | 27 | ### Body Copy 28 | 29 | - Font size: 18px 30 | 31 | ### Font 32 | 33 | - Family: [Public Sans](https://fonts.google.com/specimen/Public+Sans) 34 | - Weights: 300, 400, 700 -------------------------------------------------------------------------------- /img/icon-pinterest.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/icon-instagram.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/icon-online.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/bg-intro-mobile.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/bg-intro-desktop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/icon-budgeting.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/logo-white.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/logo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /text.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | 8 | 9 | 10 | 11 |Take your financial life online. Your Easybank account will be a one-stop-shop 37 | for spending, saving, budgeting, investing, and much more.
38 | 39 |
43 | We leverage Open Banking to turn your bank account into your financial hub.
50 | Control
51 | your finances like never before.
Our modern web and mobile applications allow you to keep track of your finances 57 | wherever you are in the world.
58 |See exactly where your money goes each month. Receive notifications when you’re 63 | close to hitting your limits.
64 |We don’t do branches. Open your account in minutes online and start taking control 69 | of your finances right away.
70 |Manage your savings, investments, pension, and much more from one account. Tracking 75 | your money has never been easier.
76 |
86 | The world is getting smaller and we’re becoming more mobile. So why should you be 90 | forced to only receive money in a single
91 |
95 | Our simple budgeting feature allows you to separate out your spending and set 99 | realistic limits each month. That means you …
100 |
104 | We want you to enjoy your travels. This is why we don’t charge any fees on purchases 108 | while you’re abroad. We’ll even show you …
109 |
113 | After a lot of hard work by the whole team, we’re excited to launch our closed beta. 117 | It’s easy to request an invite through the site ...
118 |