From e833fbd213e100a673f192a8c2f739fae97efe5d Mon Sep 17 00:00:00 2001 From: Hexaitos Date: Mon, 30 Sep 2024 12:12:24 +0200 Subject: [PATCH] Add contact --- _layouts/contact.html | 26 ++++++++++++++++++++++++++ _layouts/home.html | 2 +- _site/assets/css/styles.css | 25 ++++++++++++++++++++++++- _site/assets/css/styles_side.css | 10 +++++----- _site/assets/icons/logo-purple.svg | 10 ++++++++++ _site/blog.html | 2 +- _site/contact.html | 11 ++++++++++- _site/index.html | 2 +- assets/css/styles.css | 25 ++++++++++++++++++++++++- assets/css/styles_side.css | 10 +++++----- assets/icons/logo-purple.svg | 10 ++++++++++ blog.md | 4 +++- contact.md | 10 ++++++++-- 13 files changed, 128 insertions(+), 19 deletions(-) create mode 100755 _layouts/contact.html create mode 100755 _site/assets/icons/logo-purple.svg create mode 100755 assets/icons/logo-purple.svg diff --git a/_layouts/contact.html b/_layouts/contact.html new file mode 100755 index 0000000..fb3c215 --- /dev/null +++ b/_layouts/contact.html @@ -0,0 +1,26 @@ + + + + + + +{{ page.title }} + + + + + {% include menu.html %} + +
+

Where to find me

+
+ {{ content }} +
+
+ + + + + diff --git a/_layouts/home.html b/_layouts/home.html index 61bee59..1a90326 100755 --- a/_layouts/home.html +++ b/_layouts/home.html @@ -18,7 +18,7 @@

Welcome to my website!

-

Hello and welcome to my website :>

+

Hello and welcome to my website :> It is still very much a work-in-progress!

diff --git a/_site/assets/css/styles.css b/_site/assets/css/styles.css index 2a846f4..b898e9b 100755 --- a/_site/assets/css/styles.css +++ b/_site/assets/css/styles.css @@ -154,7 +154,7 @@ div.menu { border-radius: 10px; } -.menu a:hover { +.menu a:hover, .contact a:hover { background-color: #ae4e26; } @@ -166,6 +166,29 @@ div.menu { text-decoration: none; } +div.contact { + text-align: center; +} + +.contact a { + color: white; + text-decoration: none; + padding: .8em .8em; + margin-right: 1em; + margin-left: 1em; + min-width: 80%; + text-align: center; + background-color: #dba047; + display:inline-block; + font-size: medium; + border-radius: 10px; + margin-bottom: 1em; +} + +/*.contact a:last-child { + min-width: 94%; +} */ + footer { /* background: #ae4e26; */ background: #2b2623; diff --git a/_site/assets/css/styles_side.css b/_site/assets/css/styles_side.css index fe87de8..d747ba9 100755 --- a/_site/assets/css/styles_side.css +++ b/_site/assets/css/styles_side.css @@ -5,11 +5,11 @@ body { } img.pfp { - border: 2px solid rgba(167, 47, 20, 1); - max-width: 150px; - display: block; - margin-left: auto; - margin-right: auto; + border: 2px solid rgba(167, 47, 20, 1); + max-width: 150px; + display: block; + margin-left: auto; + margin-right: auto; } .sidenav { diff --git a/_site/assets/icons/logo-purple.svg b/_site/assets/icons/logo-purple.svg new file mode 100755 index 0000000..0f8baeb --- /dev/null +++ b/_site/assets/icons/logo-purple.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/_site/blog.html b/_site/blog.html index e70a6f4..b386422 100755 --- a/_site/blog.html +++ b/_site/blog.html @@ -18,7 +18,7 @@
- +

Nothing here just yet.

diff --git a/_site/contact.html b/_site/contact.html index 1e122f7..becd64d 100755 --- a/_site/contact.html +++ b/_site/contact.html @@ -18,8 +18,17 @@
-

My socials

+

Where to find me

+
diff --git a/_site/index.html b/_site/index.html index 7b8b42e..a367886 100755 --- a/_site/index.html +++ b/_site/index.html @@ -24,7 +24,7 @@

Welcome to my website!

-

Hello and welcome to my website :>

+

Hello and welcome to my website :> It is still very much a work-in-progress!

diff --git a/assets/css/styles.css b/assets/css/styles.css index 2a846f4..b898e9b 100755 --- a/assets/css/styles.css +++ b/assets/css/styles.css @@ -154,7 +154,7 @@ div.menu { border-radius: 10px; } -.menu a:hover { +.menu a:hover, .contact a:hover { background-color: #ae4e26; } @@ -166,6 +166,29 @@ div.menu { text-decoration: none; } +div.contact { + text-align: center; +} + +.contact a { + color: white; + text-decoration: none; + padding: .8em .8em; + margin-right: 1em; + margin-left: 1em; + min-width: 80%; + text-align: center; + background-color: #dba047; + display:inline-block; + font-size: medium; + border-radius: 10px; + margin-bottom: 1em; +} + +/*.contact a:last-child { + min-width: 94%; +} */ + footer { /* background: #ae4e26; */ background: #2b2623; diff --git a/assets/css/styles_side.css b/assets/css/styles_side.css index fe87de8..d747ba9 100755 --- a/assets/css/styles_side.css +++ b/assets/css/styles_side.css @@ -5,11 +5,11 @@ body { } img.pfp { - border: 2px solid rgba(167, 47, 20, 1); - max-width: 150px; - display: block; - margin-left: auto; - margin-right: auto; + border: 2px solid rgba(167, 47, 20, 1); + max-width: 150px; + display: block; + margin-left: auto; + margin-right: auto; } .sidenav { diff --git a/assets/icons/logo-purple.svg b/assets/icons/logo-purple.svg new file mode 100755 index 0000000..0f8baeb --- /dev/null +++ b/assets/icons/logo-purple.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/blog.md b/blog.md index a70962e..c516b17 100755 --- a/blog.md +++ b/blog.md @@ -1,4 +1,6 @@ --- layout: default title: "Hexaitos.com – Blog" ---- \ No newline at end of file +--- + +Nothing here just yet. \ No newline at end of file diff --git a/contact.md b/contact.md index f9af508..a2bcbff 100755 --- a/contact.md +++ b/contact.md @@ -1,6 +1,12 @@ --- -layout: default +layout: contact title: "Hexaitos.com – Contact" --- -# My socials \ No newline at end of file +[Mastodon (@hexaitos@squawk.social)](https://squawk.social/@hexaitos) +[Email (me@hexaitos.com)](mailto:me@hexaitos.com) +[Fur Affinity (hexaitos)](https://furaffinity.net/user/hexaitos) +[Discord (hexaitos)](https://discordapp.com/users/1272834133697101854) +[Bluesky (@hexaitos.bsky.social)](https://bsky.app/profile/hexaitos.bsky.social) +[Steam (hexaitos)](https://steamcommunity.com/id/hexaitos/) [Weasyl (hexaitos)](https://www.weasyl.com/~hexaitos) +[SoFurry (hexaitos)](https://hexaitos.sofurry.com/)