Add margin centering for wide pages, improve whitespace styling

About & photography page tab whitespace improved.
This commit is contained in:
Xevion
2022-09-20 18:28:48 -05:00
parent e06150ccf7
commit 37c2614f8c
3 changed files with 24 additions and 8 deletions

View File

@@ -6,7 +6,7 @@ permalink: /about/
_preview_description: My name is Ryan Walters and this is my website. _preview_description: My name is Ryan Walters and this is my website.
--- ---
My name is **Ryan Walters** and this is my website. As the domain shows, my online handle is **Xevion**. <span class="tab">My name is **Ryan Walters** and this is my website. As the domain shows, my online handle is **Xevion**.</span>
As of <i>{{ page.last_modified_at | | date: '%B %Y' }}</i>, I'm a Computer Science student studying at UTSA. Contact me if you're interested in working with me! As of <i>{{ page.last_modified_at | | date: '%B %Y' }}</i>, I'm a Computer Science student studying at UTSA. Contact me if you're interested in working with me!

View File

@@ -22,15 +22,20 @@ photos:
_preview_description: Although I am a Software Engineer at my core, I also do photography. Take a look at some of my best work from 2019 to 2021. _preview_description: Although I am a Software Engineer at my core, I also do photography. Take a look at some of my best work from 2019 to 2021.
--- ---
<br> <br>
From a young age I accepted that I was a technically inclined person and art was not in my blood... <span class="tab">
Pens, pencils and paints all failed to reflect my vision for art, and I became disinterested in dedicating myself further to it. From a young age I accepted that I was a technically inclined person and art was not in my blood...
Pens, pencils and paints all failed to reflect my vision for art, and I became disinterested in dedicating myself further to it.
</span>
From then on art was a world I was not privy to - this all changed when I picked up <abbr title="a Nikon D3300, also my first camera">my sister's camera</abbr>. <span class="tab">
I couldn't put it down, I couldn't stop messing with the settings, the angles, and trying new things. I was absolutely captured by photography that day. From then on art was a world I was not privy to -- this all changed when I picked up <abbr class="nowrap" title="a Nikon D3300, also my first camera">my sister's camera</abbr>.
I couldn't put it down, I couldn't stop messing with the settings, the angles, and trying new things. I was absolutely captured by photography that day.
</span>
Since then, I've slowly been dedicating myself more and more to photography as a way of artistic expression and out of technical curiosity. <span class="tab">
I'm not the greatest, but it's a fun hobby, and I hope you like my work. The photos here are only a preview Since then, I've slowly been dedicating myself more and more to photography as a way of artistic expression and out of technical curiosity.
and are not updated on any sort of frequency. I'm not the greatest, but it's a fun hobby, and I hope you like my work. The photos here are only a preview and are not updated on any sort of frequency.
</span>
<div class="text-center callout-section"> <div class="text-center callout-section">
<span style="margin: 25px;">More available at</span> <span style="margin: 25px;">More available at</span>

View File

@@ -296,6 +296,7 @@ nav a {
html, html,
body { body {
visibility: visible !important; visibility: visible !important;
margin: 0 auto;
} }
small { small {
@@ -385,4 +386,14 @@ article {
} }
} }
} }
}
span, p {
&.tab {
margin-left: 2em;
}
}
.nowrap {
white-space: nowrap;
} }