diff --git a/_data/contact.yml b/_data/contact.yml new file mode 100644 index 0000000..ff5bddd --- /dev/null +++ b/_data/contact.yml @@ -0,0 +1,22 @@ +- heading: Social + entries: + - [lynne@bune.city, "mailto:lynne@bune.city"] + - ["@lynnesbian@fedi.lynnesbian.space", https://fedi.lynnesbian.space/@lynnesbian] + - [My blog, https://bune.city] + +- heading: Computer Junk + entries: + - [Keybase, https://keybase.io/lynnesbian] + - [GitHub, https://github.com/lynnesbian] + - [Gitea, https://git.bune.city] + +- heading: Gaming + entries: + - [Steam, https://steamcommunity.com/id/lynnesbian] + - [Xbox, "https://account.xbox.com/en-au/profile?gamertag=lynnesbian"] + - [SW-4030-6532-7056 (Switch), null] + +- heading: Other + entries: + - [YouTube, https://www.youtube.com/channel/UCAslpe1QisQv5fkD1E5QV1Q] + - [reddit, https://reddit.com/u/deleeciousCheeps] \ No newline at end of file diff --git a/_includes/footer.html b/_includes/footer.html index 63bb043..92bf5b3 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -1,4 +1,5 @@ \ No newline at end of file diff --git a/assets/style.css b/assets/style.css index bb483d1..ddc8d57 100644 --- a/assets/style.css +++ b/assets/style.css @@ -1,3 +1,6 @@ +html { + background: #fafafa; +} body { font-family: "Roboto", sans-serif; display: flex; @@ -5,18 +8,20 @@ body { min-height: 100vh; margin: 0; } -body div { +#main { flex-grow: 1; -} -html { - background: #fafafa; + width: 80%; + margin: 0 auto; } h1 { - font-family: "Open Sans", "Roboto", sans-serif; text-align: center; - font-size:4em; - font-weight: 200; + font-size: 4em; + font-weight: 200 !important; +} +h1, h2, h3, h4, h5, h6 { + font-family: "Open Sans", "Roboto", sans-serif; + font-weight: 400; } #bune { @@ -27,7 +32,6 @@ h1 { } p, footer, ul { - width: 80%; margin: 20px auto; line-height: 1.3em; } @@ -50,7 +54,6 @@ footer { text-align: center; color: grey; font-style: italic; - margin: 20px auto; box-sizing: content-box; } diff --git a/contact.html b/contact.html new file mode 100644 index 0000000..47da796 --- /dev/null +++ b/contact.html @@ -0,0 +1,22 @@ +--- +title: "Contact" +layout: default +--- +

Contact

+
+

+ You can find me at any of the places listed below: +

+ + {%- for item in site.data.contact %} +

{{ item.heading }}

+ + {% endfor %} +

+ I do have accounts on services other than these, but I don't use them enough for them to be worth sharing here. +

+
\ No newline at end of file