From 9fe6fe7242e91a9c7f8c23dd47b960e8a8d6d98f Mon Sep 17 00:00:00 2001 From: danielstephenherr Date: Mon, 7 Apr 2025 20:33:30 +0000 Subject: [PATCH 1/7] Add descriptions and icons to homepage --- main/index.html | 68 ++++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 59 insertions(+), 9 deletions(-) diff --git a/main/index.html b/main/index.html index 8db377b..b5e2792 100644 --- a/main/index.html +++ b/main/index.html @@ -10,14 +10,64 @@

Daniel Herr Software

-

Memory Monitor

-

Processor Monitor

-

Bookmark Topper

-

Navigation Confirmation

-

Link Controller

-

Single Tab Zoom

-
-

Support

-

GitHub

+
+

Web Extensions

+
+

+ + + Memory Monitor + +

+

Displays RAM usage information.

+
+
+

+ + + Processor Monitor + +

+

Displays CPU usage information.

+
+
+

+ + + Bookmark Topper + +

+

Moves newly created bookmarks to the top of their folder.

+
+
+

+ + + Navigation Confirmation + +

+

Asks for confirmation before closing, reloading, or navigating to another page.

+
+
+

+ + + Link Controller + +

+

Controls whether links open in the current tab or in a new tab.

+
+
+

+ + + Single Tab Zoom + +

+

Applies zooming to the current tab instead of the entire site.

+
+
+

Support

+

GitHub

\ No newline at end of file From 26d14349d35ca36bc17a31b193a37b3d6fc90afa Mon Sep 17 00:00:00 2001 From: danielstephenherr Date: Sun, 20 Apr 2025 00:56:21 +0000 Subject: [PATCH 2/7] More profiles and contacts --- main/index.html | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/main/index.html b/main/index.html index b5e2792..310ef9d 100644 --- a/main/index.html +++ b/main/index.html @@ -67,7 +67,14 @@

Applies zooming to the current tab instead of the entire site.

-

Support

-

GitHub

+
+

Profiles and Contact

+ Support + GitHub + YouTube + LinkedIn + X + Stack Overflow +
\ No newline at end of file From 5729474f23b4ef2f73ceab19c3d387be182b9752 Mon Sep 17 00:00:00 2001 From: danielstephenherr Date: Sun, 20 Apr 2025 01:16:49 +0000 Subject: [PATCH 3/7] Homepage styling --- main/index.css | 11 +++++++++++ main/index.html | 1 + 2 files changed, 12 insertions(+) create mode 100644 main/index.css diff --git a/main/index.css b/main/index.css new file mode 100644 index 0000000..837c2fe --- /dev/null +++ b/main/index.css @@ -0,0 +1,11 @@ +h3 { + font-size: 1.2em; +} +section > a { + font-size: 1.2em; + display: inline-block; + margin: 1em; +} +section img { + vertical-align: bottom; +} \ No newline at end of file diff --git a/main/index.html b/main/index.html index 310ef9d..e7fcffe 100644 --- a/main/index.html +++ b/main/index.html @@ -3,6 +3,7 @@ + Daniel Herr Software From 64ed5cf8037bdc55424c6c5be5ec17a783b924ce Mon Sep 17 00:00:00 2001 From: danielstephenherr Date: Sun, 20 Apr 2025 02:10:42 +0000 Subject: [PATCH 4/7] Profile favicons --- main/index.css | 17 ++++++++++++----- main/index.html | 35 +++++++++++++++++++++++++++++------ 2 files changed, 41 insertions(+), 11 deletions(-) diff --git a/main/index.css b/main/index.css index 837c2fe..5412b75 100644 --- a/main/index.css +++ b/main/index.css @@ -1,11 +1,18 @@ h3 { font-size: 1.2em; } -section > a { - font-size: 1.2em; - display: inline-block; - margin: 1em; -} section img { vertical-align: bottom; +} +#profiles { + display: flex; + flex-wrap: wrap; + gap: 1em; +} +#profiles h2 { + width: 100%; + margin-bottom: 0; +} +#profiles a { + font-size: 1.2em; } \ No newline at end of file diff --git a/main/index.html b/main/index.html index e7fcffe..354e1e8 100644 --- a/main/index.html +++ b/main/index.html @@ -68,14 +68,37 @@

Applies zooming to the current tab instead of the entire site.

-
+

Profiles and Contact

Support - GitHub - YouTube - LinkedIn - X - Stack Overflow + + + GitHub + + + + + + + + + + + + +
\ No newline at end of file From e96d8dadd26b05a69175009562a4d71ad0b6d23c Mon Sep 17 00:00:00 2001 From: danielstephenherr Date: Sun, 20 Apr 2025 02:12:19 +0000 Subject: [PATCH 5/7] Profiles fix --- main/index.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/main/index.html b/main/index.html index 354e1e8..e3e78f9 100644 --- a/main/index.html +++ b/main/index.html @@ -76,27 +76,27 @@

Profiles and Contact

GitHub
- Reddit - Google Groups - YouTube - LinkedIn - X (Twitter) - Stack Overflow
From 8db71f3eb49d729c5671cfe2f3da1230e3fe6875 Mon Sep 17 00:00:00 2001 From: danielstephenherr Date: Sun, 20 Apr 2025 02:37:05 +0000 Subject: [PATCH 6/7] Profile favicons tweaks --- main/index.css | 5 ++++- main/index.html | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/main/index.css b/main/index.css index 5412b75..28f8adf 100644 --- a/main/index.css +++ b/main/index.css @@ -1,7 +1,7 @@ h3 { font-size: 1.2em; } -section img { +img { vertical-align: bottom; } #profiles { @@ -15,4 +15,7 @@ section img { } #profiles a { font-size: 1.2em; +} +#profiles img, #profiles picture { + vertical-align: middle; } \ No newline at end of file diff --git a/main/index.html b/main/index.html index e3e78f9..7e94ac2 100644 --- a/main/index.html +++ b/main/index.html @@ -72,7 +72,10 @@

Profiles and Contact

Support - + + + + GitHub From e69f98dd5611f70b31e76ff52c7e76984c0ee818 Mon Sep 17 00:00:00 2001 From: danielstephenherr Date: Sun, 20 Apr 2025 03:10:02 +0000 Subject: [PATCH 7/7] Shrink address links to smaller of header or main --- main/Bookmark_Topper.html | 4 ++-- main/Link_Controller.html | 4 ++-- main/Memory_Monitor.html | 4 ++-- main/Navigation_Confirmation.html | 4 ++-- main/Processor_Monitor.html | 4 ++-- main/Single_Tab_Zoom.html | 4 ++-- main/Support.html | 5 ++--- main/details.css | 2 +- main/index.css | 8 ++++---- main/index.html | 8 ++++---- main/main.css | 7 ++++++- main/support.css | 6 ------ 12 files changed, 29 insertions(+), 31 deletions(-) delete mode 100644 main/support.css diff --git a/main/Bookmark_Topper.html b/main/Bookmark_Topper.html index cee85cb..70dfcce 100644 --- a/main/Bookmark_Topper.html +++ b/main/Bookmark_Topper.html @@ -58,10 +58,10 @@

3.0

-
+ \ No newline at end of file diff --git a/main/Link_Controller.html b/main/Link_Controller.html index ecb1c14..158e9f8 100644 --- a/main/Link_Controller.html +++ b/main/Link_Controller.html @@ -39,10 +39,10 @@

Manual Extension Package Installation

- + \ No newline at end of file diff --git a/main/Memory_Monitor.html b/main/Memory_Monitor.html index 73a120c..a72fad8 100644 --- a/main/Memory_Monitor.html +++ b/main/Memory_Monitor.html @@ -38,10 +38,10 @@

Manual Extension Package Installation

- + \ No newline at end of file diff --git a/main/Navigation_Confirmation.html b/main/Navigation_Confirmation.html index 4ee5ebd..7840656 100644 --- a/main/Navigation_Confirmation.html +++ b/main/Navigation_Confirmation.html @@ -39,10 +39,10 @@

Manual Extension Package Installation

- + \ No newline at end of file diff --git a/main/Processor_Monitor.html b/main/Processor_Monitor.html index 822213c..7d16069 100644 --- a/main/Processor_Monitor.html +++ b/main/Processor_Monitor.html @@ -38,10 +38,10 @@

Manual Extension Package Installation

- + \ No newline at end of file diff --git a/main/Single_Tab_Zoom.html b/main/Single_Tab_Zoom.html index cdcc954..c73c85b 100644 --- a/main/Single_Tab_Zoom.html +++ b/main/Single_Tab_Zoom.html @@ -39,10 +39,10 @@

Manual Extension Package Installation

- + \ No newline at end of file diff --git a/main/Support.html b/main/Support.html index cc33d51..a885554 100644 --- a/main/Support.html +++ b/main/Support.html @@ -3,7 +3,6 @@ - Support - Daniel Herr Software @@ -14,10 +13,10 @@

Support

-
+

If you are experiencing a problem and would like help, would like to request a feature, or just ask something, you can use Reddit or Google Groups.

-
+ \ No newline at end of file diff --git a/main/details.css b/main/details.css index 05c43c0..bbc1986 100644 --- a/main/details.css +++ b/main/details.css @@ -6,6 +6,6 @@ ul { list-style-type: disc; padding-left: 16px; } -aside { +address { margin-top: 2em; } \ No newline at end of file diff --git a/main/index.css b/main/index.css index 28f8adf..12ca538 100644 --- a/main/index.css +++ b/main/index.css @@ -4,18 +4,18 @@ h3 { img { vertical-align: bottom; } -#profiles { +address { display: flex; flex-wrap: wrap; gap: 1em; } -#profiles h2 { +address h2 { width: 100%; margin-bottom: 0; } -#profiles a { +address a { font-size: 1.2em; } -#profiles img, #profiles picture { +address img, address picture { vertical-align: middle; } \ No newline at end of file diff --git a/main/index.html b/main/index.html index 7e94ac2..1ef41c5 100644 --- a/main/index.html +++ b/main/index.html @@ -11,7 +11,7 @@

Daniel Herr Software

-
+

Web Extensions

@@ -67,8 +67,8 @@

Applies zooming to the current tab instead of the entire site.

-
-
+ +

Profiles and Contact

Support @@ -102,6 +102,6 @@

Profiles and Contact

Stack Overflow
-
+ \ No newline at end of file diff --git a/main/main.css b/main/main.css index bf81c93..bd0558c 100644 --- a/main/main.css +++ b/main/main.css @@ -7,9 +7,14 @@ html { } body { font-family: sans-serif; - width: fit-content; + width: min-content; + max-width: 100%; margin: auto; } +header, main { + width: max-content; + max-width: 100%; +} h1 { margin-top: 0; } \ No newline at end of file diff --git a/main/support.css b/main/support.css deleted file mode 100644 index 235ff7c..0000000 --- a/main/support.css +++ /dev/null @@ -1,6 +0,0 @@ -body { - width: min-content; -} -header { - width: max-content; -} \ No newline at end of file