From 14d67c8b528456228a0ede7b7fc492673d9416f5 Mon Sep 17 00:00:00 2001 From: luiswtheds Date: Wed, 25 Sep 2024 14:26:26 -0400 Subject: [PATCH 1/6] style: implement custom scrollbar for better UX --- src/index.css | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/src/index.css b/src/index.css index 17df0e7e..eb06ebe8 100644 --- a/src/index.css +++ b/src/index.css @@ -15,3 +15,29 @@ code { font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace; } + +::-webkit-scrollbar { + width: 13px; + height: 12px; +} + +::-webkit-scrollbar-thumb { + background-color: #6b00719f; + border-radius: 4px; +} + +::-webkit-scrollbar-thumb:hover{ + background-color: #6b0071b2; +} + +::-webkit-scrollbar-track { + background-color: rgb(255, 211, 244); +} +/* Alternate scrollbar for browsers that dont support webkit such as firefox */ +@supports not (-webkit-text-stroke: chocolate){ + * { + scrollbar-width:auto; + scrollbar-color: #6b00719f rgb(255, 211, 244); + } +} + From 7c604f10aead093d94d6c13ad323aa127dbd36ba Mon Sep 17 00:00:00 2001 From: Luis Cabrera <127437720+luiswtheds@users.noreply.github.com> Date: Wed, 25 Sep 2024 15:00:04 -0400 Subject: [PATCH 2/6] Update README.md --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f6e1ceb1..ff52b794 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,9 @@ Welcome to the website for **Bytes of Love**! -This website allows players to learn about what Bytes of Love is and get a download of the current game for FREE! +Bytes of Love is an engaging dating simulator with immersive romantic storylines and and character interactions. + +This website allows players to learn more about what Bytes of Love is and get a download of the current game for FREE! ## Website Link @@ -40,6 +42,8 @@ If you'd like to run the website locally on your machine, follow these steps: After running this command, the website should be accessible via http://localhost:3000 or another port specified in the console. +For more details on contributing to the project, please visit [CONTRIBUTING.md](CONTRIBUTING.md). + ## Credits Created by: Wilson Goins, Anton Salvador, Xael Font, Edward Roshko, Ryder Keeny, Nicolas Valiente, and Tyra Passion. From 1c24028fede8b44e03eba37935279cafe164735b Mon Sep 17 00:00:00 2001 From: Luis Cabrera <127437720+luiswtheds@users.noreply.github.com> Date: Wed, 25 Sep 2024 15:19:24 -0400 Subject: [PATCH 3/6] Create CONTRIBUTING.md --- CONTRIBUTING.md | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..f622dcb5 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,34 @@ +# Contributing to the Bytes Of Love website + +Thank you for considering contributing to the Bytes of Love website! Here are some guidelines to help you get started. + +## How to Contribute + +1. **Fork the repository**: Click the "Fork" button at the top right of the repo. +2. **Clone your fork**: + ```bash + git clone https://github.com/your-username/project-name.git +3. **Create a new branch**: + ```bash + git checkout -b feature/your-feature-name +4. **Make changes and commit them**: + ```bash + git commit -m "Add some feature" +5. **Push your branch**: + ```bash + git push origin feature/your-feature-name +6. **Create a pull request: Go to the original repository and click "New Pull Request".**: + +## Coding Guidelines +- Match the exisitng code style (indentation, variable naming, whitespace) +- Write clear and descriptive commit messages (for help with this, [see here](https://www.freecodecamp.org/news/how-to-write-better-git-commit-messages/)) +- Include comments in your code for clarity +- Ensure your changes are tested, ideally in multiple browsers and platforms + +## Questions or Issues? +If you have any questions or run into any issues, feel free to reach out or open an issue in the repository. + +Thanks for contributing! + + + From 6698f6f22d04326d09933b7073c8baa1084a5212 Mon Sep 17 00:00:00 2001 From: Luis Cabrera <127437720+luiswtheds@users.noreply.github.com> Date: Wed, 25 Sep 2024 15:25:10 -0400 Subject: [PATCH 4/6] Update CONTRIBUTING.md --- CONTRIBUTING.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f622dcb5..986a3f61 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -4,6 +4,8 @@ Thank you for considering contributing to the Bytes of Love website! Here are so ## How to Contribute +If you want to find a good place to start, you can check out our current [issues](https://github.com/ufosc/BytesOfLoveWebsite/issues). Once you know how you'd like to contribute, you can follow the following steps. + 1. **Fork the repository**: Click the "Fork" button at the top right of the repo. 2. **Clone your fork**: ```bash From 2cbe23136c40a2903945ec0ee274cc03ee57ddba Mon Sep 17 00:00:00 2001 From: luiswtheds Date: Wed, 25 Sep 2024 15:33:47 -0400 Subject: [PATCH 5/6] Revert "style: implement custom scrollbar for better UX" I will use this commit for a different pull request. --- src/index.css | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/src/index.css b/src/index.css index eb06ebe8..17df0e7e 100644 --- a/src/index.css +++ b/src/index.css @@ -15,29 +15,3 @@ code { font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace; } - -::-webkit-scrollbar { - width: 13px; - height: 12px; -} - -::-webkit-scrollbar-thumb { - background-color: #6b00719f; - border-radius: 4px; -} - -::-webkit-scrollbar-thumb:hover{ - background-color: #6b0071b2; -} - -::-webkit-scrollbar-track { - background-color: rgb(255, 211, 244); -} -/* Alternate scrollbar for browsers that dont support webkit such as firefox */ -@supports not (-webkit-text-stroke: chocolate){ - * { - scrollbar-width:auto; - scrollbar-color: #6b00719f rgb(255, 211, 244); - } -} - From b83645e31c2e0b72b95f6edf3dc4cd18c094791e Mon Sep 17 00:00:00 2001 From: Luis Cabrera <127437720+luiswtheds@users.noreply.github.com> Date: Wed, 25 Sep 2024 15:52:12 -0400 Subject: [PATCH 6/6] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index ff52b794..a6ce6ce7 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,8 @@ If you'd like to run the website locally on your machine, follow these steps: After running this command, the website should be accessible via http://localhost:3000 or another port specified in the console. +## Contributing + For more details on contributing to the project, please visit [CONTRIBUTING.md](CONTRIBUTING.md). ## Credits