From a26bcacde8f855a6f59caf97831c5d9dfd052e1d Mon Sep 17 00:00:00 2001 From: Marco Kaiser Date: Sun, 17 Nov 2024 06:40:38 +0100 Subject: [PATCH 1/4] style: Remove unnecessary `.woff` file type Info: WOFF2 is supported in all major browsers since 2016 --- css/style.css | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/css/style.css b/css/style.css index e2ade45..57c7405 100644 --- a/css/style.css +++ b/css/style.css @@ -1,11 +1,10 @@ @font-face { -/* +/* Note: The font files are not included in this repository due to legal restrictions. For more information, please refer to the README.md file located in the 'fonts' directory. */ font-family: 'Departure Mono'; - src: url('../fonts/DepartureMono-Regular.woff2') format('woff2'), - url('../fonts/DepartureMono-Regular.woff') format('woff'); + src: url('../fonts/DepartureMono-Regular.woff2') format('woff2'); font-weight: normal; font-style: normal; font-display: swap; @@ -540,4 +539,4 @@ a { a:hover { text-decoration: none; color: var(--cyber-secondary-color); -} \ No newline at end of file +} -- 2.30.2 From cb7f54ce0bd08b52b94c793fbadbb215e9dd8877 Mon Sep 17 00:00:00 2001 From: Marco Kaiser Date: Sun, 17 Nov 2024 06:44:30 +0100 Subject: [PATCH 2/4] fix: Add missing fallback - Change font family for input and button to inherit to reduce duplication and make code more maintainable --- css/style.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/css/style.css b/css/style.css index 57c7405..e671a70 100644 --- a/css/style.css +++ b/css/style.css @@ -29,7 +29,7 @@ } body { - font-family: 'Departure Mono'; + font-family: 'Departure Mono', monospace; font-size: 18px; line-height: 1.75; background-color: var(--cyber-bg-color); @@ -98,7 +98,7 @@ main { } input[type="text"] { - font-family: 'Departure Mono'; + font-family: inherit; width: calc(100% - 20px); padding: 10px; border: 2px solid var(--cyber-primary-color); @@ -150,7 +150,7 @@ input[type="text"]:focus { /* Buttons */ button { - font-family: 'Departure Mono'; + font-family: inherit; padding: 10px 20px; border-radius: 5px; background-color: var(--cyber-bg-color); -- 2.30.2 From 6a7cd24fe49cf1428918fb1bfdfcea5518c1fa4b Mon Sep 17 00:00:00 2001 From: Marco Kaiser Date: Sun, 17 Nov 2024 11:52:59 +0100 Subject: [PATCH 3/4] chore: Add .gitignore --- .gitignore | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..84eaaf6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +# IDE stuff +.idea + +# All files in the fonts directory except the README +fonts/* +!fonts/README.md -- 2.30.2 From fb97e4845880a7efd56d799c2f43556dc935754c Mon Sep 17 00:00:00 2001 From: Marco Kaiser Date: Sun, 17 Nov 2024 11:57:37 +0100 Subject: [PATCH 4/4] chore: Add template for pull requests --- .gitea/PULL_REQUEST_TEMPLATE.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .gitea/PULL_REQUEST_TEMPLATE.md diff --git a/.gitea/PULL_REQUEST_TEMPLATE.md b/.gitea/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..d10ec82 --- /dev/null +++ b/.gitea/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,8 @@ +## Description + + +## How to test + + +## Related issues + -- 2.30.2