From 5171b6e77d88d6b479db6a05ae77a1d15b17749c Mon Sep 17 00:00:00 2001 From: NipulM Date: Sat, 20 Jan 2024 13:45:33 +0530 Subject: [PATCH 001/119] impr: updated ul and footer --- index.html | 150 ++++++++++++++++++++++++++++++++--------------------- styles.css | 69 +++++++++++++++++------- 2 files changed, 141 insertions(+), 78 deletions(-) diff --git a/index.html b/index.html index 62da9e0..82eb9d3 100644 --- a/index.html +++ b/index.html @@ -1,68 +1,98 @@ - - - - Generators - - - - - - - - - - -
-
-

Generators Gallery

-
-
-
-
-
-
-
-
- fortune generator example - -
-

Fortune Generator

-

Get your daily fortune with just a click.

- Check this out -
- + +
+
+
+
+
+ fortune generator example + +
+

Fortune Generator

+

+ Get your daily fortune with just a click. +

+ Check this out +
+
-
-
-
- quote generator example - -
-

Quote Generator

-

Generate inspiring and thought-provoking quotes effortlessly.

- Check this out -
-
-
-
-
- -
- - - \ No newline at end of file +
+ + + + diff --git a/styles.css b/styles.css index 2f72b27..8bba019 100644 --- a/styles.css +++ b/styles.css @@ -13,7 +13,7 @@ } .dark-mode { - --bg-color: #000000dd; + --bg-color: #212121; --title-color: #ffffffd8; --dark-mode-icon-color: #efefef; /* button */ @@ -37,6 +37,12 @@ /* color: var(--button-text-color); */ } +* { + margin: 0; + padding: 0px; + box-sizing: border-box; +} + body { background-color: var(--bg-color); } @@ -51,42 +57,69 @@ h5 { color: var(--title-color); } -.card { - background-color: var(--card-bg-color); +.row { + display: flex; + align-items: center; } -.card-title, .card-text { - color: var(--card-title-color); +.row h1 { + margin-top: 15px; +} + +#dark-mode-icon { + display: flex; + margin-top: 13px; + margin-left: -120px; + justify-content: center; + font-size: 2.4rem; + color: var(--dark-mode-icon-color); + cursor: pointer; + opacity: 85%; } .container { margin-top: 30px; } +.card-body { + height: 170px; +} + +.card { + background-color: var(--card-bg-color); +} + +.card-title, +.card-text { + color: var(--card-title-color); +} + .card-footer { background-color: var(--card-footer-color); - color: var(--card-footer-text-color); + color: var(--card-footer-text-color); } #footer-author { - text-align: right; + margin-top: 15px; + text-align: center; + background-color: var(--bg-color); +} + +#footer-author h5 a { + text-decoration: none; } #footer-author-icon { + margin-left: 10px; width: 4%; border-radius: 50%; + width: 40px; + height: 40px; overflow: hidden; } -.row { - display: flex; +@media only screen and (max-width: 1200px) { + #dark-mode-icon { + margin-left: 0px; + } } - -#dark-mode-icon { - margin-left: 25px; - margin-top: 15px; - font-size: 2.4rem; - color: var(--dark-mode-icon-color); - cursor: pointer; - opacity: 85%; -} \ No newline at end of file -- 2.49.1 From 8e1c38e1807e8cbb95a577682dc75300bc04a51d Mon Sep 17 00:00:00 2001 From: lifeadventurer Date: Mon, 19 Feb 2024 14:06:57 +0800 Subject: [PATCH 002/119] chore: add stale PR workflow --- .github/workflows/stale-pr.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/stale-pr.yml diff --git a/.github/workflows/stale-pr.yml b/.github/workflows/stale-pr.yml new file mode 100644 index 0000000..2a5bbaf --- /dev/null +++ b/.github/workflows/stale-pr.yml @@ -0,0 +1,17 @@ +name: Mark Stale PRs + +on: + schedule: + - cron: '30 20 * * *' + +permissions: + pull-requests: write + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v8 + with: + stale-pr-message: 'This PR is stale. Please trigger a re-run of the PR check action.' + days-before-stale: 7 \ No newline at end of file -- 2.49.1 From 47a201e1d753f51b1178e35090b0bd645769a527 Mon Sep 17 00:00:00 2001 From: lifeadventurer Date: Tue, 20 Feb 2024 21:09:35 +0800 Subject: [PATCH 003/119] impr(quotes): add 7 new quotes --- quote_generator/json/quotes.json | 35 ++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/quote_generator/json/quotes.json b/quote_generator/json/quotes.json index aced214..5f6bd2b 100644 --- a/quote_generator/json/quotes.json +++ b/quote_generator/json/quotes.json @@ -294,6 +294,41 @@ "quote": "My life is bathed in golden sunlight, and the really wonderful thing is that I know it.", "author": "Helen McCrory", "id": 59 + }, + { + "quote": "You block your dream when you allow your feat to grow bigger than you faith.", + "author": "Mary Manin Morrissey", + "id": 60 + }, + { + "quote": "The future influences the present just as much as the past.", + "author": "Friedrich Nietzsche", + "id": 61 + }, + { + "quote": "You could cover the whole earth with asphalt, but sooner or later green grass would break through.", + "author": "Ilya Ehrenburg", + "id": 62 + }, + { + "quote": "Empathy is about finding echoes of another person in yourself.", + "author": "Mohsin Hamid", + "id": 63 + }, + { + "quote": "Life is like this one big process of letting go.", + "author": "Adrianne Lenker", + "id": 64 + }, + { + "quote": "Great results cannot be achieved at once; and we should be satisfied to advance in life, step by step.", + "author": "Samuel Smiles", + "id": 65 + }, + { + "quote": "To live means to be aware, joyously, drunkenly, serenely, divinely aware.", + "author": "Henry Miller", + "id": 66 } ] } -- 2.49.1 From ae666dfd50e9e8664dce504b1743c7dc135c0e4a Mon Sep 17 00:00:00 2001 From: tobiichi3227 <86729076+tobiichi3227@users.noreply.github.com> Date: Fri, 1 Mar 2024 22:43:58 +0800 Subject: [PATCH 004/119] docs: add docs about distribution of fortune (#28) --- docs/fortune_status_statistics.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 docs/fortune_status_statistics.md diff --git a/docs/fortune_status_statistics.md b/docs/fortune_status_statistics.md new file mode 100644 index 0000000..df71be1 --- /dev/null +++ b/docs/fortune_status_statistics.md @@ -0,0 +1,20 @@ +# 運勢出現分佈 + +大吉: 20.33% +中吉: 14.37% +小吉: 10.57% +吉: 14.49% +末吉: 10.14% +中平: 14.29% +凶: 8.64% +大凶: 7.17% + +大吉: 20.30% +中吉: 14.34% +小吉: 10.59% +吉: 14.44% +末吉: 10.24% +中平: 14.40% +凶: 8.60% +大凶: 7.09% + -- 2.49.1 From 7f610cb7743679b42d4ca849d27f6302e137b3f1 Mon Sep 17 00:00:00 2001 From: lifeadventurer Date: Mon, 4 Mar 2024 00:05:53 +0800 Subject: [PATCH 005/119] chore: update copyright to 2023-2024 --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 62da9e0..5dc76b1 100644 --- a/index.html +++ b/index.html @@ -56,7 +56,7 @@