diff options
author | Shipwreckt <Shipwreckt@mailfence.com> | 2024-06-04 19:06:27 +0100 |
---|---|---|
committer | Shipwreckt <Shipwreckt@mailfence.com> | 2024-06-04 19:06:27 +0100 |
commit | 6681b30e4b2aa9fecde077082c9373e923d63067 (patch) | |
tree | d78b3b71cc44684a563b9c69a956f858f89c3b4a /public/styles.css | |
parent | 15799409963c988a8441db163c07e5f2020dab9b (diff) |
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
Diffstat (limited to 'public/styles.css')
-rw-r--r-- | public/styles.css | 46 |
1 files changed, 46 insertions, 0 deletions
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; +} + |