Skip to content

Commit 450feed

Browse files
committed
Overhaul the social menu. Add humor and seriousness to the footer. Add ability to include writing as link and as content.
1 parent e6a8cf5 commit 450feed

110 files changed

Lines changed: 14989 additions & 230 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

archetypes/medium-posts.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

archetypes/resume.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

archetypes/writing.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: "{{ replace .Name "-" " " | title }}"
3+
date: {{ .Date }}
4+
summary: ''
5+
link: ''
6+
categories: []
7+
draft: true
8+
---

assets/_custom.scss

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
@import "fa/fontawesome";
2+
@import "fa/regular";
3+
@import "fa/solid";
4+
@import "fa/brands";
5+
6+
@media print {
7+
.no-print, nav, header.book-header {
8+
display: none;
9+
}
10+
.print-only {
11+
display: inherit;
12+
}
13+
}
14+
15+
@media screen {
16+
.no-print, nav, header.book-header {
17+
display: inherit;
18+
}
19+
.print-only {
20+
display: none;
21+
}
22+
}

assets/_fonts.scss

Lines changed: 5 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
21
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,400;0,500;1,400;1,500&display=swap');
32
@import url('https://fonts.googleapis.com/css2?family=Antic&display=swap');
43
@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans&display=swap');
@@ -15,32 +14,18 @@ nav {
1514
span.date, div.post-meta h4, footer.book-footer {
1615
font-family: 'Source Code Pro', monospace;
1716
font-weight: bold;
18-
font-size: 0.66em;
17+
font-size: 0.85em;
1918
text-transform: uppercase;
2019
}
2120

2221
body, nav ul a {
2322
font-family: "Alegreya Sans", sans-serif
2423
}
2524

26-
code {
27-
font-family: 'Source Code Pro', monospace;
28-
}
29-
30-
@media print {
31-
.no-print, nav, header.book-header {
32-
display: none;
33-
}
34-
.print-only {
35-
display: inherit;
36-
}
25+
nav ul.social li {
26+
font-size: 0.85em;
3727
}
3828

39-
@media screen {
40-
.no-print, nav, header.book-header {
41-
display: inherit;
42-
}
43-
.print-only {
44-
display: none;
45-
}
29+
code {
30+
font-family: 'Source Code Pro', monospace;
4631
}

assets/fa/_animated.scss

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// Animated Icons
2+
// --------------------------
3+
4+
.#{$fa-css-prefix}-spin {
5+
animation: fa-spin 2s infinite linear;
6+
}
7+
8+
.#{$fa-css-prefix}-pulse {
9+
animation: fa-spin 1s infinite steps(8);
10+
}
11+
12+
@keyframes fa-spin {
13+
0% {
14+
transform: rotate(0deg);
15+
}
16+
17+
100% {
18+
transform: rotate(360deg);
19+
}
20+
}

assets/fa/_bordered-pulled.scss

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// Bordered & Pulled
2+
// -------------------------
3+
4+
.#{$fa-css-prefix}-border {
5+
border: solid .08em $fa-border-color;
6+
border-radius: .1em;
7+
padding: .2em .25em .15em;
8+
}
9+
10+
.#{$fa-css-prefix}-pull-left { float: left; }
11+
.#{$fa-css-prefix}-pull-right { float: right; }
12+
13+
.#{$fa-css-prefix},
14+
.fas,
15+
.far,
16+
.fal,
17+
.fab {
18+
&.#{$fa-css-prefix}-pull-left { margin-right: .3em; }
19+
&.#{$fa-css-prefix}-pull-right { margin-left: .3em; }
20+
}

assets/fa/_core.scss

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
// Base Class Definition
2+
// -------------------------
3+
4+
.#{$fa-css-prefix},
5+
.fas,
6+
.far,
7+
.fal,
8+
.fad,
9+
.fab {
10+
-moz-osx-font-smoothing: grayscale;
11+
-webkit-font-smoothing: antialiased;
12+
display: inline-block;
13+
font-style: normal;
14+
font-variant: normal;
15+
text-rendering: auto;
16+
line-height: 1;
17+
}
18+
19+
%fa-icon {
20+
@include fa-icon;
21+
}

assets/fa/_fixed-width.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// Fixed Width Icons
2+
// -------------------------
3+
.#{$fa-css-prefix}-fw {
4+
text-align: center;
5+
width: $fa-fw-width;
6+
}

assets/fa/_icons.scss

Lines changed: 1451 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)