core: fix header order

This commit is contained in:
Trianta 2024-12-09 15:45:49 -06:00
parent 8c049aa0f7
commit 536c8dd473
2 changed files with 20 additions and 20 deletions

View File

@ -66,6 +66,12 @@ canvas {
}
h1 {
text-align: right;
padding: 8px;
color: rgba(254, 100, 11, 0.7);
}
h2 {
width: 400px;
text-align: center;
margin: auto;
@ -74,18 +80,12 @@ h1 {
border-radius: 24px;
}
h2 {
h3 {
text-align: center;
margin-top: 0;
margin-bottom: 0.5rem;
}
h3 {
text-align: right;
padding: 8px;
color: rgba(254, 100, 11, 0.7);
}
h4 {
color: #8c8fa1;
margin-top: 0;

View File

@ -12,15 +12,15 @@
<a class="navItem" href="https://lab.trianta.dev/Trianta">Projects</a>
</div>
<div id="main">
<h3>An engineer creating solutions on current problems that enhance the future.</h3>
<h1>Completed Projects</h1>
<h1>An engineer creating solutions on current problems that enhance the future.</h1>
<h2>Completed Projects</h2>
<div class="card">
<h2 class="cardTop">Pong</h2>
<h3 class="cardTop">Pong</h3>
<div class="canvas">
<canvas width="750" height="585" id="pong"></canvas>
<script src="public/pong.js"></script>
<div id="gameover" hidden="true">
<h1>Game Over</h1>
<h3>Game Over</h3>
</div>
<div id="restart" hidden="true">
<button class="button" type="button" onclick = "restartGame()">Restart Game</a>
@ -31,7 +31,7 @@
<a class="navItem" href="https://lab.trianta.dev/Trianta/trianta.dev/src/branch/main/src/pong.js">View Code</a>
</div>
<div class="card">
<h2 class="cardTop">Snake</h2>
<h3 class="cardTop">Snake</h3>
<div class="canvas">
<canvas width="625" height="375" id="snake"></canvas>
<script src="public/snake.js"></script>
@ -46,9 +46,9 @@
<p class="cardStats">Food Location: <span id="snakeFood"></span></p>
<a class="navItem" href="https://lab.trianta.dev/Trianta/trianta.dev/src/branch/main/src/snake.ts">View Code</a>
</div>
<h1>Current Personal Projects</h1>
<h2>Current Personal Projects</h2>
<div class="card">
<h2 class="cardTop">Wrench</h2>
<h3 class="cardTop">Wrench</h3>
<p class="cardStats">Description: A simple application to handle all of your Linux configuration needs.</p>
<p class="cardStats">Language: C++26</p>
<p class="cardStats">Tools: CMake</p>
@ -56,13 +56,13 @@
<a class="navItem" href="https://github.com/Trimutex/wrench">View Repository</a>
</div>
<div class="card">
<h2 class="cardTop">Synopsis</h2>
<h3 class="cardTop">Synopsis</h3>
<p class="cardStats">Description: A markdown repository containing details and changes of servers I maintain.</p>
<a class="navItem" href="https://github.com/Trimutex/synopsis">View Repository</a>
</div>
<h1>Other Projects</h1>
<h2>Other Projects</h2>
<div class="card">
<h2 class="cardTop">Hyprland</h2>
<h3 class="cardTop">Hyprland</h3>
<p class="cardStats">Description: An independent, highly customizable, dynamic tiling Wayland compositor that doesn't sacrifice on its looks. </p>
<a class="navItem" href="https://github.com/hyprwm/Hyprland">View Repository</a>
<p class="cardStats">Language: C++26</p>
@ -80,7 +80,7 @@
<a class="navItem" href="https://github.com/hyprwm/Hyprland/pull/6652">hyprwm/Hyprland#6652</a>
</div>
<div class="card">
<h2 class="cardTop">Proxy</h2>
<h3 class="cardTop">Proxy</h3>
<p class="cardStats">Description: A program written in C++ to act as a proxy for another server.</p>
<a class="navItem" href="https://lab.trianta.dev/Trianta/proxy-network">View Repository</a>
<p class="cardStats">Language: C++11</p>
@ -88,7 +88,7 @@
<p class="cardStats">Testing Frameworks: <a href="https://github.com/ThrowTheSwitch/Unity">Unity Test (ThrowTheSwitch)</a></p>
</div>
<div class="card">
<h2 class="cardTop">Cloudcare</h2>
<h3 class="cardTop">Cloudcare</h3>
<p class="cardStats">Description: A sample repository that uses downloaded .bed files to train a model on DNA using PyTorch.</p>
<a class="navItem" href="https://github.com/Trimutex/cloudcare">View Repository</a>
<p class="cardStats">Languages: Python, Bash</p>
@ -96,7 +96,7 @@
<p class="cardStats">Tools: Conda</p>
</div>
<div class="card">
<h2 class="cardTop">N-Queens</h2>
<h3 class="cardTop">N-Queens</h3>
<p class="cardStats">Description: The N-Queens problem recreated in C++ which gets solved using a Genetic Algorithm.</p>
<a class="navItem" href="https://lab.trianta.dev/Trianta/n-queens">View Repository</a>
<p class="cardStats">Language: C++11</p>