From a77f6d530af3e2848b291257b0a98013c72921de Mon Sep 17 00:00:00 2001 From: Palash Mondal Date: Thu, 15 Oct 2020 15:22:43 +0530 Subject: [PATCH 01/10] Update README.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 901b570..689bfa8 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,12 @@ > Course created by [Wes Bos](https://github.com/wesbos). Join the challenge (for free!) here - [JavaScript30](https://javascript30.com/account) +![GitHub Stars](https://img.shields.io/github/stars/palashmon/JavaScript30) +![GitHub Forks](https://img.shields.io/github/forks/palashmon/JavaScript30?color=brightgreen) +![GitHub followers](https://img.shields.io/github/followers/palashmon?color=orange) +![GitHub language count](https://img.shields.io/github/languages/count/palashmon/JavaScript30?color=brightgreen) +![GitHub top language](https://img.shields.io/github/languages/top/palashmon/JavaScript30) +

JavaScript30

From 380a89f5e97e852fc9ee10cf5399a9e4c46872c6 Mon Sep 17 00:00:00 2001 From: Palash Mondal Date: Thu, 26 Aug 2021 13:04:08 +0530 Subject: [PATCH 02/10] Updated UI --- Challenges/Day 01 - JavaScript Drum Kit/style.css | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/Challenges/Day 01 - JavaScript Drum Kit/style.css b/Challenges/Day 01 - JavaScript Drum Kit/style.css index 84d2386..ca0fdad 100644 --- a/Challenges/Day 01 - JavaScript Drum Kit/style.css +++ b/Challenges/Day 01 - JavaScript Drum Kit/style.css @@ -3,12 +3,9 @@ html { font-size: 10px; background: #2980b9; /* fallback for old browsers */ - background: -webkit-linear-gradient(to right, #2c3e50, #2980b9); /* Chrome 10-25, Safari 5.1-6 */ - background: linear-gradient( - to right, - #2c3e50, - #2980b9 - ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */ + background: linear-gradient(300deg, deepskyblue, darkviolet, blue); + background-size: 180% 180%; + animation: gradient-animation 18s ease infinite; } body, @@ -111,3 +108,9 @@ input[type='button'] { background: rgba(0, 0, 0, 0.4); text-shadow: 0 0 5px black; } + +@keyframes gradient-animation { + 0% { background-position: 0% 50%; } + 50% { background-position: 100% 50%; } + 100% { background-position: 0% 50%; } +} From 968ed39bc4daabbe8ace636ef37fbac4b37f01af Mon Sep 17 00:00:00 2001 From: Palash Mondal Date: Thu, 26 Aug 2021 13:09:30 +0530 Subject: [PATCH 03/10] Updated UI --- Challenges/Day 01 - JavaScript Drum Kit/index.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Challenges/Day 01 - JavaScript Drum Kit/index.html b/Challenges/Day 01 - JavaScript Drum Kit/index.html index c621b20..b068732 100644 --- a/Challenges/Day 01 - JavaScript Drum Kit/index.html +++ b/Challenges/Day 01 - JavaScript Drum Kit/index.html @@ -3,7 +3,10 @@ - JS Drum Kit + + + + JavaScript Drum Kit | JavaScript30 | @palashmon From d16931b7df1aa82c9a88a60cf72602cee844f609 Mon Sep 17 00:00:00 2001 From: Palash Mondal Date: Thu, 26 Aug 2021 13:13:28 +0530 Subject: [PATCH 04/10] Updated typography --- Challenges/Day 01 - JavaScript Drum Kit/index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/Challenges/Day 01 - JavaScript Drum Kit/index.html b/Challenges/Day 01 - JavaScript Drum Kit/index.html index b068732..8aa4c80 100644 --- a/Challenges/Day 01 - JavaScript Drum Kit/index.html +++ b/Challenges/Day 01 - JavaScript Drum Kit/index.html @@ -6,6 +6,7 @@ + JavaScript Drum Kit | JavaScript30 | @palashmon From c6312a3b4910afe4e920d1d720c8795b907f1010 Mon Sep 17 00:00:00 2001 From: Palash Mondal Date: Thu, 26 Aug 2021 13:15:52 +0530 Subject: [PATCH 05/10] Updated UI --- .../Day 01 - JavaScript Drum Kit/style.css | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/Challenges/Day 01 - JavaScript Drum Kit/style.css b/Challenges/Day 01 - JavaScript Drum Kit/style.css index ca0fdad..f25dd74 100644 --- a/Challenges/Day 01 - JavaScript Drum Kit/style.css +++ b/Challenges/Day 01 - JavaScript Drum Kit/style.css @@ -1,20 +1,26 @@ -@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap'); - html { font-size: 10px; background: #2980b9; /* fallback for old browsers */ background: linear-gradient(300deg, deepskyblue, darkviolet, blue); background-size: 180% 180%; - animation: gradient-animation 18s ease infinite; + animation: gradient-animation 15s ease infinite; } +* { + padding: 0; + margin: 0; + box-sizing: border-box; +} body, html { - margin: 0; - padding: 0; - font-family: 'Montserrat', sans-serif; height: 100%; } +body { + font-family: "Raleway", sans-serif; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} .container { display: grid; From bc2511f4fdec90e513ca553693b56999fcb3bb2c Mon Sep 17 00:00:00 2001 From: Palash Mondal Date: Thu, 26 Aug 2021 13:17:33 +0530 Subject: [PATCH 06/10] Updated UI --- Challenges/Day 01 - JavaScript Drum Kit/index2.html | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Challenges/Day 01 - JavaScript Drum Kit/index2.html b/Challenges/Day 01 - JavaScript Drum Kit/index2.html index 3eaaab4..8083544 100644 --- a/Challenges/Day 01 - JavaScript Drum Kit/index2.html +++ b/Challenges/Day 01 - JavaScript Drum Kit/index2.html @@ -3,8 +3,12 @@ - JS Drum Kit - + + + + + JavaScript Drum Kit #2 | JavaScript30 | @palashmon + From 2c07e023c52dae5b9b7945458c8cd775742e4b99 Mon Sep 17 00:00:00 2001 From: Palash Mondal Date: Thu, 26 Aug 2021 13:18:01 +0530 Subject: [PATCH 07/10] Updated stylesheet version number --- Challenges/Day 01 - JavaScript Drum Kit/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Challenges/Day 01 - JavaScript Drum Kit/index.html b/Challenges/Day 01 - JavaScript Drum Kit/index.html index 8aa4c80..0a97996 100644 --- a/Challenges/Day 01 - JavaScript Drum Kit/index.html +++ b/Challenges/Day 01 - JavaScript Drum Kit/index.html @@ -8,7 +8,7 @@ JavaScript Drum Kit | JavaScript30 | @palashmon - + From 247df9dc879631a95c901ae873100b11b1282754 Mon Sep 17 00:00:00 2001 From: Palash Mondal Date: Sun, 25 Feb 2024 13:07:25 +0530 Subject: [PATCH 08/10] chore: add dependabot version updates --- .github/dependabot.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..55887d3 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,15 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: "npm" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "weekly" + ignore: + # For all packages, ignore all patch updates + - dependency-name: "*" + update-types: ["version-update:semver-major"] From 080c57d6ec6438a1675a0e35340d0aa0fa7d85ca Mon Sep 17 00:00:00 2001 From: Palash Mondal Date: Mon, 8 Apr 2024 16:40:23 +0530 Subject: [PATCH 09/10] chore: update dependabot versions --- .github/dependabot.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 55887d3..a6e38df 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,8 +1,3 @@ -# To get started with Dependabot version updates, you'll need to specify which -# package ecosystems to update and where the package manifests are located. -# Please see the documentation for all configuration options: -# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates - version: 2 updates: - package-ecosystem: "npm" # See documentation for possible values @@ -13,3 +8,8 @@ updates: # For all packages, ignore all patch updates - dependency-name: "*" update-types: ["version-update:semver-major"] + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" From e411ea4ee6da4d63d9ba9877c71bc6d2cbb7fc6b Mon Sep 17 00:00:00 2001 From: Palash Mondal Date: Thu, 11 Apr 2024 09:31:25 +0530 Subject: [PATCH 10/10] chore: update dependabot version action --- .github/dependabot.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index a6e38df..fe3a155 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,15 +1,18 @@ version: 2 updates: - - package-ecosystem: "npm" # See documentation for possible values - directory: "/" # Location of package manifests + - package-ecosystem: "npm" + directory: "/" schedule: - interval: "weekly" + interval: "daily" + open-pull-requests-limit: 10 ignore: - # For all packages, ignore all patch updates - dependency-name: "*" update-types: ["version-update:semver-major"] - + commit-message: + prefix: "chore" - package-ecosystem: "github-actions" directory: "/" + commit-message: + prefix: "chore" schedule: - interval: "daily" + interval: "monthly"