From 6681b30e4b2aa9fecde077082c9373e923d63067 Mon Sep 17 00:00:00 2001 From: Shipwreckt Date: Tue, 4 Jun 2024 19:06:27 +0100 Subject: Added image to my about me, I have updated the CSS to make it a circle. I have also did some minor ajustments to the weeklybytes to make it look a little cleaner --- public/index.html | 64 ++++++++++++++------------- public/projects/WeeklyByte/2024/issue0WB.html | 4 +- public/projects/WeeklyByte/2024/issue1WB.html | 1 - public/projects/WeeklyByte/2024/issue2WB.html | 1 - public/styles.css | 46 +++++++++++++++++++ 5 files changed, 81 insertions(+), 35 deletions(-) (limited to 'public') diff --git a/public/index.html b/public/index.html index 2329122..21cb8e3 100644 --- a/public/index.html +++ b/public/index.html @@ -18,7 +18,8 @@
-

Shipwreckt


+

Shipwreckt

+
+ + + - -
+ + - diff --git a/public/projects/WeeklyByte/2024/issue0WB.html b/public/projects/WeeklyByte/2024/issue0WB.html index 2966dd8..e1a208f 100644 --- a/public/projects/WeeklyByte/2024/issue0WB.html +++ b/public/projects/WeeklyByte/2024/issue0WB.html @@ -92,8 +92,8 @@ due to the fact that it is really efficient for programming, I use it for programming and typing up. these newsletters.


-

Conclusion

- That is all for this week. I will post these on Fridays from now on; I only posted this today. +

Conclusion

+

That is all for this week. I will post these on Fridays from now on; I only posted this today. because I have been given permission to actually do this, and I am grateful. But if you read all of this, thank you; it does mean a lot to me!

diff --git a/public/projects/WeeklyByte/2024/issue1WB.html b/public/projects/WeeklyByte/2024/issue1WB.html index d25cdd3..95473ef 100644 --- a/public/projects/WeeklyByte/2024/issue1WB.html +++ b/public/projects/WeeklyByte/2024/issue1WB.html @@ -73,7 +73,6 @@ care about space and you have optimised systemd on Ubuntu, this should not be a software applications F-droid can be installed on any android phone and as mentioned is an app store for free and libre code, personally I would suggest "table habit" it lets you forge good habits and break old ones!

-
diff --git a/public/projects/WeeklyByte/2024/issue2WB.html b/public/projects/WeeklyByte/2024/issue2WB.html index ac41e64..0686896 100644 --- a/public/projects/WeeklyByte/2024/issue2WB.html +++ b/public/projects/WeeklyByte/2024/issue2WB.html @@ -30,7 +30,6 @@

Weekly byte
Date: 2/6/2024


Hello and welcome to this week's edition of the weekly byte! This week we will be talking about some Linux Mint, some software suggestions, how I stay safe online, and way more so keep reading!

-

Distro of the week: Linux Mint !

Linux Mint is my favourite debian-based Linux distro, and for good reason, because it just does what it sets out to do: make it easy on the user, and Linux Mint does that very well. In my experience with Linux Mint, I have had no problems at all to speak of.

Pros

diff --git a/public/styles.css b/public/styles.css index 2a6451f..63c1df5 100644 --- a/public/styles.css +++ b/public/styles.css @@ -149,3 +149,49 @@ main a:hover { width: 70%; } +.about-content { + display: flex; +} + +.about-image img { + width: 200px; /* Adjust the width as needed */ + height: auto; /* Maintain the aspect ratio */ + border-radius: 50%; + border: 5px solid #7a4d7c; + margin-top: -20px; /* Adjust the negative margin to move the image up */ +} + + + + +.about-text { + flex: 3; +} + +.about-text h2 { + color: #7a4d7c; +} + +.about-text p { + margin: 10px 0; +} + +.about-text ul { + list-style: none; + padding: 0; + margin: 0; +} + +.about-text ul li { + margin-top: 10px; +} + +.about-text ul li a { + color: #9433ff; + text-decoration: none; +} + +.about-text ul li a:hover { + text-decoration: underline; +} + -- cgit v1.2.3