diff --git a/content/_index.md b/content/_index.md
index 6373d6c..2825e8b 100644
--- a/content/_index.md
+++ b/content/_index.md
@@ -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
-
\ No newline at end of file
+
+
+
diff --git a/content/blog/_index.md b/content/blog/_index.md
index 65f8a62..85171d6 100644
--- a/content/blog/_index.md
+++ b/content/blog/_index.md
@@ -10,5 +10,4 @@ extra:
I write about software, hardware, life, and school. ([RSS](/rss.xml))
----
\ No newline at end of file
diff --git a/sass/styles/layout.scss b/sass/styles/layout.scss
index 0686d4a..678681a 100644
--- a/sass/styles/layout.scss
+++ b/sass/styles/layout.scss
@@ -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;
}
-}
\ No newline at end of file
+}
+
+#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;
+ }
+}
diff --git a/templates/base.html b/templates/base.html
index 280b3c8..c1c1d8f 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -78,8 +78,8 @@
Home |
Blog |
- Hobbies |
- WHOIS
+ Hobbies
+ {# WHOIS #}
{# RFC #}
@@ -88,13 +88,14 @@
{% block content %}
{% endblock content %}
-
-
-
- You are being served via AMPRNet [More
- Info]
-
-
+
+ {# #}
diff --git a/templates/section.html b/templates/section.html
index 2bf16ec..5097aa6 100644
--- a/templates/section.html
+++ b/templates/section.html
@@ -63,7 +63,6 @@
{% endif %}
-
{% endif %}
{% endfor %}
diff --git a/templates/shortcodes/card_section.html b/templates/shortcodes/card_section.html
new file mode 100644
index 0000000..3420710
--- /dev/null
+++ b/templates/shortcodes/card_section.html
@@ -0,0 +1,8 @@
+
+
+
+ {{body | safe}}
+
+
\ No newline at end of file