Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typo and tweaks #3

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions 404.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
layout: default
permalink: /404.html
---
# 404!
#### I have no idea what you're looking for, but it's not here.
4 changes: 4 additions & 0 deletions _sass/_page.scss
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,10 @@ p.post-desc {
width: 96px;
height: 96px;
margin: -.4rem 1rem 0 $spacer;

img {
border-radius: 150px;
}
}

@include mq-up(md) {
Expand Down
2 changes: 2 additions & 0 deletions _sass/_site.scss
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
.site-logo {
width: 3rem;
height: 3rem;
border-radius: 100px;
}

.site-nav {
Expand All @@ -40,6 +41,7 @@
padding: 0 .25rem;
margin-right: $spacer0;
transition: background 0.1s ease-out;
border-radius: 5px;

&:hover {
text-decoration: none;
Expand Down
2 changes: 1 addition & 1 deletion _sass/_text.scss
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ small,
mark,
.mark {
padding: .2em;
background-color: $ligt-yellow;
background-color: $light-yellow;
}

code, kbd,
Expand Down
12 changes: 8 additions & 4 deletions _sass/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,17 @@ $blue: #4072AF;
$light-blue: lighten($blue, 45%);
$dark-blue: darken($blue, 20%);

$ligt-yellow: #fcf8e3;
$green: #40AF72;
$light-green: lighten($green, 45%);
$dark-green: darken($green, 20%);

$light-yellow: #fcf8e3;

$red: #bd4147;

// COLORS - BRAND ------------------
$brand-color: $blue;
$brand-light-color: $light-blue;
$brand-color: $green;
$brand-light-color: $light-green;
$brand-secondary: $gray-dark;
$text-muted: $gray-light;

Expand All @@ -29,7 +33,7 @@ $body-color: $gray-dark;
// GLOBALS - LINKS ------------------
$link-color: $brand-color;
$link-decoration: none;
$link-hover-color: $dark-blue;
$link-hover-color: $dark-green;
$link-hover-decoration: underline;

// GLOBALS - SPACERS ------------------
Expand Down