Skip to content

Commit

Permalink
Minor: portfolio tweaks
Browse files Browse the repository at this point in the history
Update now page, and link contact and now page from main index.
  • Loading branch information
meisekimiu committed Feb 16, 2024
1 parent de3a381 commit bce1b6e
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/portfolio/index.html.template
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,10 @@
</p>
<p>
Want to see some of my C++ code? Check out my
<a href="https://github.com/meisekimiu/advent-of-code-2023"
title="I'm gonna save Christmas!">
<a
href="https://github.com/meisekimiu/advent-of-code-2023"
title="I'm gonna save Christmas!"
>
Advent of Code 2023 repository!
</a>
</p>
Expand Down Expand Up @@ -110,5 +112,9 @@
</div>
</div>
</div>
<ul class="bottom-links">
<li><a href="contact.html">Contact</a></li>
<li><a href="now.html">What I'm Doing Now</a></li>
</ul>
</body>
</html>
4 changes: 4 additions & 0 deletions src/portfolio/now.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ <h2>
</div>
<div class="game-summary">
<h2>What I'm Doing Now</h2>
<p class="now-summary">
This is a <a href="https://nownownow.com/about">Now Page</a> that will
be updated on occasion to highlight what I'm up to.
</p>
<i>Last updated: 2024-02-15</i>
<ul>
<li>
Expand Down
17 changes: 17 additions & 0 deletions src/portfolio/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -387,3 +387,20 @@ span[title] {
display: none;
}
}

.bottom-links {
text-align: center;

li {
list-style-type: none;
display: inline-block;

& + li::before {
content: "";
}
}
}

.now-summary {
text-align: center;
}

0 comments on commit bce1b6e

Please sign in to comment.