-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add date to search results, clean up a ton of css
- Loading branch information
1 parent
a8eba05
commit 58c5f14
Showing
17 changed files
with
71 additions
and
244 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,9 +17,9 @@ | |
|
||
{% block content %} | ||
<article> | ||
<div class=about> | ||
<div class="about"> | ||
<div aria-label=Avatar> | ||
<section><img class=avatar src="{{ get_url(path="img/profile.png") }}" alt=profile.png></section> | ||
<section><img class="avatar" src="{{ get_url(path="img/profile.png") }}" alt=profile.png></section> | ||
</div> | ||
<div> | ||
<section aria-label=Biography> | ||
|
@@ -28,11 +28,11 @@ | |
</p> | ||
</section> | ||
<section aria-label=Contact> | ||
<div class=icons aria-label=Links> | ||
<a class=icon href=mailto:[email protected] target=_blank rel=noopener title=Mail>{{ macros::svg_mail() }}</a> | ||
<a class=icon href=https://github.com/gamingrobot target=_blank rel="noopener me">{{ macros::svg_github() }}</a> | ||
<a class=icon href=https://www.linkedin.com/in/morgancreekmore target=_blank rel="noopener me">{{ macros::svg_linkedin() }}</a> | ||
<a class=icon href=https://fosstodon.org/@gamingrobot target=_blank rel="noopener me">{{ macros::svg_mastadon() }}</a> | ||
<div class="icons" aria-label=Links> | ||
<a class="icon" href="mailto:[email protected]" target="_blank" rel=noopener title=Mail>{{ macros::svg_mail() }}</a> | ||
<a class="icon" href="https://github.com/gamingrobot" target="_blank" rel="noopener me">{{ macros::svg_github() }}</a> | ||
<a class="icon" href="https://www.linkedin.com/in/morgancreekmore" target="_blank" rel="noopener me">{{ macros::svg_linkedin() }}</a> | ||
<a class="icon" href="https://fosstodon.org/@gamingrobot" target="_blank" rel="noopener me">{{ macros::svg_mastadon() }}</a> | ||
</div> | ||
</section> | ||
</div> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,37 @@ | ||
// for the list of posts | ||
|
||
.section__title { | ||
font-size: $section__title-font-size; | ||
.section-title { | ||
font-size: $section-title-font-size; | ||
} | ||
|
||
.post-list { | ||
margin-top: 2em; | ||
} | ||
|
||
.post-list__item { | ||
.post-list-item { | ||
margin-bottom: 2em; | ||
} | ||
|
||
.item__title--big { | ||
.item-title-big { | ||
display: block; | ||
font-size: $item__title-big-font-size; | ||
font-size: $item-title-big-font-size; | ||
line-height: 1.25; | ||
} | ||
|
||
.item__title--small { | ||
.item-title-small { | ||
font-size: 1rem; | ||
} | ||
|
||
.item__date { | ||
color: $item__date-color; | ||
.item-date { | ||
color: $item-date-color; | ||
display: block; | ||
font-size: $item__date-font-size; | ||
font-size: $item-date-font-size; | ||
margin-bottom: .2rem; | ||
margin-top: .2rem; | ||
} | ||
|
||
.item__summary { | ||
.item-summary { | ||
p { | ||
margin-bottom: 0; | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// some misc styles | ||
.element--center { | ||
.element-center { | ||
display: block; | ||
margin-left: auto; | ||
margin-right: auto; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.