diff --git a/src/icons/andrew.eot b/src/icons/andrew.eot index b8e56de..d134ffd 100644 Binary files a/src/icons/andrew.eot and b/src/icons/andrew.eot differ diff --git a/src/icons/andrew.svg b/src/icons/andrew.svg index 195885b..b663eb2 100644 --- a/src/icons/andrew.svg +++ b/src/icons/andrew.svg @@ -28,4 +28,8 @@ + + + + \ No newline at end of file diff --git a/src/icons/andrew.ttf b/src/icons/andrew.ttf index c558a00..5961737 100644 Binary files a/src/icons/andrew.ttf and b/src/icons/andrew.ttf differ diff --git a/src/icons/andrew.woff b/src/icons/andrew.woff index 00d9a6b..2b414c7 100644 Binary files a/src/icons/andrew.woff and b/src/icons/andrew.woff differ diff --git a/src/icons/andrew.woff2 b/src/icons/andrew.woff2 index 182346c..cc46e34 100644 Binary files a/src/icons/andrew.woff2 and b/src/icons/andrew.woff2 differ diff --git a/src/index.html b/src/index.html index 6e37fb3..c0ccfc2 100644 --- a/src/index.html +++ b/src/index.html @@ -31,6 +31,9 @@ + + diff --git a/src/scss/_dark.scss b/src/scss/_dark.scss index 179f009..290ffcf 100644 --- a/src/scss/_dark.scss +++ b/src/scss/_dark.scss @@ -22,5 +22,8 @@ a.github { color: var(--link-gh-dark); } + a.blog { + color: var(--link-blog-dark); + } } } diff --git a/src/scss/_icons.scss b/src/scss/_icons.scss index 8fb2b66..b6127f9 100644 --- a/src/scss/_icons.scss +++ b/src/scss/_icons.scss @@ -2,6 +2,7 @@ $icon-arrow: '\e902'; $icon-email: '\e903'; $icon-github: '\e900'; $icon-mastodon: '\e901'; +$icon-rss: '\e907'; @font-face { font-family: 'andrew'; @@ -42,3 +43,7 @@ $icon-mastodon: '\e901'; .icon-mastodon:before { content: $icon-mastodon; } +.icon-rss:before { + content: $icon-rss; + font-weight: 900; +} diff --git a/src/scss/_variables.scss b/src/scss/_variables.scss index 20afc83..b1cf2c7 100644 --- a/src/scss/_variables.scss +++ b/src/scss/_variables.scss @@ -15,6 +15,8 @@ $link-tb-normal: #0069ff; $link-tb-dark: #29baff; $link-gh-normal: #24292e; $link-gh-dark: #f1f1f1; +$link-blog-normal: #736be3; +$link-blog-dark: #9690ea; $screen-mobile: 640px; $screen-tablet: 768px; $screen-laptop: 1024px; diff --git a/src/scss/theme.scss b/src/scss/theme.scss index 48b93f4..a251dfd 100644 --- a/src/scss/theme.scss +++ b/src/scss/theme.scss @@ -1,4 +1,4 @@ -/*! AndrewGioia.com style definitions v7.0.1 */ +/*! andrewgioia.com style definitions v7.0.1 */ // normalize @import "../../node_modules/normalize.css/normalize"; @@ -21,6 +21,8 @@ --link-tb-dark: #{$link-tb-dark}; --link-gh-normal: #{$link-gh-normal}; --link-gh-dark: #{$link-gh-dark}; + --link-blog-normal: #{$link-blog-normal}; + --link-blog-dark: #{$link-blog-dark}; } // icons @@ -89,6 +91,10 @@ footer { &.email { color: #ef5777; } + + &.blog { + color: var(--link-blog-normal); + } } } @@ -124,7 +130,7 @@ a { } // schemes -//@import "dark"; +@import "dark"; // media queries @import "media";