cleanup home page a bit
This commit is contained in:
parent
f790d6ee7c
commit
b2ab793596
|
@ -45,31 +45,34 @@
|
||||||
background: black;
|
background: black;
|
||||||
color: white;
|
color: white;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
> img {
|
.container {
|
||||||
|
display: flex;
|
||||||
|
flex-flow: column;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.photo {
|
||||||
max-height: 100vh;
|
max-height: 100vh;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
object-fit: contain;
|
object-fit: contain;
|
||||||
object-position: center bottom;
|
object-position: center bottom;
|
||||||
}
|
}
|
||||||
> div {
|
.info {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-flow: column;
|
flex-flow: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
div img {
|
.logo {
|
||||||
margin: 2rem 0;
|
margin: 2rem 0;
|
||||||
}
|
}
|
||||||
display: flex;
|
|
||||||
flex-flow: column;
|
|
||||||
align-items: center;
|
|
||||||
@media (min-width: 40rem) {
|
@media (min-width: 40rem) {
|
||||||
> img {
|
.photo {
|
||||||
height: 20rem;
|
height: 20rem;
|
||||||
}
|
}
|
||||||
flex-flow: row-reverse;
|
.container {
|
||||||
justify-content: space-between;
|
flex-flow: row-reverse;
|
||||||
max-width: 40rem;
|
justify-content: space-between;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
a {
|
a {
|
||||||
color: white;
|
color: white;
|
||||||
|
@ -86,5 +89,16 @@
|
||||||
#updates {
|
#updates {
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
font-size: 1.25rem;
|
font-size: 1.25rem;
|
||||||
|
.heading {
|
||||||
|
font-size: 1.5em;
|
||||||
|
font-weight: 700;
|
||||||
|
margin-bottom: 1em;
|
||||||
|
}
|
||||||
|
p + p {
|
||||||
|
margin: 1em 0;
|
||||||
|
}
|
||||||
|
p {
|
||||||
|
max-width: 55ch;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -32,17 +32,20 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
<section class="container" id="birdsounds">
|
<section class="" id="birdsounds">
|
||||||
<div class="">
|
<div class="container">
|
||||||
<img src="/images/logos/koken_y.png" alt="birdsounds.media logo">
|
<div class="info">
|
||||||
<a href="https://birdsounds.media" class="">view my photos</a>
|
<img class="logo" src="/images/logos/koken_y.png" alt="birdsounds.media logo">
|
||||||
|
<a href="https://birdsounds.media" class="">view my photos</a>
|
||||||
|
</div>
|
||||||
|
<img class="photo" src="/images/soulpunx.jpg" alt="#soulpunx">
|
||||||
</div>
|
</div>
|
||||||
<img src="/images/soulpunx.jpg" alt="#soulpunx">
|
|
||||||
</section>
|
</section>
|
||||||
<section class="section" id="updates">
|
<section class="section" id="updates">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<p>currently: working on my websites, trying to do some documentation for an untitled social app project, and looking for work. check out the "work" tab of this site for my elevator pitch.</p>
|
<h2 class="heading">latest updates</h2>
|
||||||
|
<p>2022-07-04: currently working on my websites, trying to do some documentation for a personal project, and looking for work. check out the "work" tab of this site for my elevator pitch.</p>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</main>
|
</main>
|
||||||
{{ end }}
|
{{ end }}
|
Loading…
Reference in a new issue