style: reduce in-your-face-ness of headshot photo
This commit is contained in:
parent
d655b46db5
commit
f1f711fa1f
@ -1,12 +1,15 @@
|
||||
@page
|
||||
|
||||
<main class="container">
|
||||
<h1 class="display-4">Hi, I'm Oliver.</h1>
|
||||
<p class="lead">I'm a tech enthusiast, coffee drinker, and software developer.</p>
|
||||
|
||||
<p class="text-center">
|
||||
<img src="~/img/headshot_512x512_2023.jpg" style="width: 512px; max-width: 100%;">
|
||||
</p>
|
||||
<div class="row align-items-center mb-3">
|
||||
<div id="landing-page-intro" class="col-sm-12 col-md-6">
|
||||
<h1 class="display-4">Hi, I'm Oliver.</h1>
|
||||
<p class="lead">I'm a tech enthusiast, coffee drinker, and software developer.</p>
|
||||
</div>
|
||||
<div id="landing-page-headshot" class="col-sm-12 col-md-6 justify-content-right">
|
||||
<img src="~/img/headshot_512x512_2023.jpg" class="rounded-circle" style="width: 50%; max-width: 512px;" alt="Headshot">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<p>
|
||||
My primary focus is C#, though I have dabbled in several other languages such as Java, Kotlin, VB, C/C++,
|
||||
|
@ -367,6 +367,7 @@ td.trim-p p:last-child {
|
||||
background-size: cover;
|
||||
border-radius: 10px;
|
||||
cursor: pointer;
|
||||
|
||||
* {
|
||||
cursor: pointer;
|
||||
}
|
||||
@ -384,6 +385,7 @@ td.trim-p p:last-child {
|
||||
&:first-child {
|
||||
border-left: none;
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
border-right: none;
|
||||
}
|
||||
@ -392,7 +394,7 @@ td.trim-p p:last-child {
|
||||
|
||||
.post-tags a.badge {
|
||||
transition: color 250ms, background-color 250ms;
|
||||
|
||||
|
||||
&:link, &:visited, &:active {
|
||||
background-color: #2D2D2D !important;
|
||||
color: #fff;
|
||||
@ -407,12 +409,38 @@ td.trim-p p:last-child {
|
||||
.mastodon-update-card.card {
|
||||
background-color: desaturate(darken(#6364FF, 50%), 50%);
|
||||
margin-bottom: 50px;
|
||||
|
||||
|
||||
p:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
|
||||
button.btn.btn-mastodon {
|
||||
background-color: #6364FF;
|
||||
}
|
||||
}
|
||||
|
||||
#landing-page-intro {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#landing-page-headshot {
|
||||
text-align: right;
|
||||
|
||||
img {
|
||||
transition: border-radius .4s;
|
||||
|
||||
&:hover {
|
||||
border-radius: 5px !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
#landing-page-intro {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#landing-page-headshot {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user