1
This commit is contained in:
Evan Pratten 2022-03-14 13:08:52 -04:00
parent 4616762afd
commit a942629b1a
6 changed files with 80 additions and 25 deletions

View File

@ -5,6 +5,7 @@ title: Home
I am a first-year college student, studying Software Engineering at Sheridan College. I develop software both as a hobby, and professionally, and have been programming since I was in the 5th grade. I am also a Canadian amateur radio operator (callsign **VA3ZZA**), and the former Lead Software Developer at [Raider Robotics](https://github.com/frc5024).
## What I have been up to
<ul class="events-list">
@ -54,4 +55,6 @@ I am a first-year college student, studying Software Engineering at Sheridan Col
<li><div><span>Mar</span> <span>FRC Waterloo district event <em>quarter-finalists</em> as part of Raider Robotics</span></div></li>
<li><div><span>Mar</span> <span>FRC Georgian district event <em>quarter-finalists</em> as part of Raider Robotics</span></div></li>
</ul>
</ul>
</ul>

View File

@ -10,5 +10,4 @@ extra:
I write about software, hardware, life, and school. ([RSS](/rss.xml))
---
<br>

View File

@ -8,7 +8,8 @@ h6 {
font-weight: bolder;
}
p,
li {
li,
span {
font-family: "Roboto", sans-serif;
font-weight: normal;
}
@ -25,7 +26,8 @@ a {
}
body {
margin-bottom: 30px;
// margin-bottom: 30px;
margin: 0;
}
.mobile-hidden {
@ -166,6 +168,13 @@ ul {
.blog-post-listing-item {
color: black !important;
& > div {
border-left: solid rgb(201, 201, 201) 5px;
&:hover {
border-left: solid black 5px;
}
padding-left: 5px;
}
h4,
h1,
@ -174,22 +183,58 @@ ul {
margin: 0;
}
h1{
margin-bottom:10px;
h1 {
margin-bottom: 10px;
}
&:hover {
color:rgb(85, 85, 85) !important;
color: rgb(85, 85, 85) !important;
}
}
.pn-previous, .pn-next {
border:1px solid black;
border-radius:5px;
padding:5px;
color:black !important;
&:hover{
color:rgb(85, 85, 85) !important;
.pn-previous,
.pn-next {
border: 1px solid black;
border-radius: 5px;
padding: 5px;
color: black !important;
&:hover {
color: rgb(85, 85, 85) !important;
border: 1px solid rgb(85, 85, 85) !important;
}
}
}
#footer {
background-color: rgb(201, 201, 201);
padding: 10px;
font-size: 0.8em;
color: black;
margin-top: 30px;
display: flex;
justify-content: space-around;
align-items: center;
flex-wrap: wrap;
}
.carded-section {
border: 1px solid black;
width: 100%;
& > .header {
background-color: aliceblue;
padding-left: 30px;
padding-right: 30px;
padding-top: 15px;
padding-bottom: 15px;
border-bottom: 1px solid rgb(201, 201, 201);
& > span {
font-size: 1.5em;
font-weight: bolder;
}
}
& > .content {
padding-left: 15px;
padding-right: 15px;
}
}

View File

@ -78,8 +78,8 @@
<p>
<a href="/">Home</a> |
<a href="/blog">Blog</a> |
<a href="/hobbies">Hobbies</a> |
<a href="/whois">WHOIS</a>
<a href="/hobbies">Hobbies</a>
{# <a href="/whois">WHOIS</a> #}
{# <a href="/rfc">RFC</a> #}
</p>
<hr>
@ -88,13 +88,14 @@
{% block content %}
{% endblock content %}
</div>
<div id="ampr-notice" style="display:none;">
<br>
<p style="text-align: center;color:gray;">
You are being served via AMPRNet [<a href="http://router.va3zza.com" style="color:rgb(46, 46, 141)">More
Info</a>]
</p>
</div>
{# <div id="footer">
<div>
<h2>Evan Pratten</h2>
</div>
<div>
</div>
</div> #}
</div>
<!-- Global site tag (gtag.js) - Google Analytics -->

View File

@ -63,7 +63,6 @@
{% endif %}
</div>
</a>
<hr>
<br>
{% endif %}
{% endfor %}

View File

@ -0,0 +1,8 @@
<div class="carded-section">
<div class="header">
<span>{{title}}</span>
</div>
<div class="content">
{{body | safe}}
</div>
</div>