changed theme color & icons, added back categories
This commit is contained in:
parent
640ee12c44
commit
d03c404c39
|
@ -9,7 +9,7 @@
|
||||||
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
|
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
|
||||||
|
|
||||||
theme : "minimal-mistakes-jekyll"
|
theme : "minimal-mistakes-jekyll"
|
||||||
minimal_mistakes_skin : "dirt" # "default" "air", "aqua", "contrast", "dark", "dirt", "neon", "mint", "plum", "sunrise"
|
minimal_mistakes_skin : "neon" # "default" "air", "aqua", "contrast", "dark", "dirt", "neon", "mint", "plum", "sunrise"
|
||||||
|
|
||||||
# Site settings
|
# Site settings
|
||||||
# These are used to personalize your new site. If you look in the HTML files,
|
# These are used to personalize your new site. If you look in the HTML files,
|
||||||
|
@ -334,6 +334,7 @@ defaults:
|
||||||
type: posts
|
type: posts
|
||||||
values:
|
values:
|
||||||
layout: single
|
layout: single
|
||||||
|
classes: wide
|
||||||
author_profile: true
|
author_profile: true
|
||||||
read_time: true
|
read_time: true
|
||||||
share: true
|
share: true
|
||||||
|
|
|
@ -4,8 +4,8 @@ main:
|
||||||
# url: /docs/quick-start-guide/
|
# url: /docs/quick-start-guide/
|
||||||
- title: "Posts"
|
- title: "Posts"
|
||||||
url: /year-archive/
|
url: /year-archive/
|
||||||
# - title: "Categories"
|
- title: "Categories"
|
||||||
# url: /categories/
|
url: /categories/
|
||||||
- title: "Tags"
|
- title: "Tags"
|
||||||
url: /tags/
|
url: /tags/
|
||||||
# - title: "Pages"
|
# - title: "Pages"
|
||||||
|
|
|
@ -0,0 +1,21 @@
|
||||||
|
---
|
||||||
|
# Only the main Sass file needs front matter (the dashes are enough)
|
||||||
|
---
|
||||||
|
|
||||||
|
@charset "utf-8";
|
||||||
|
|
||||||
|
.author__urls.social-icons .svg-inline--fa,
|
||||||
|
.page__footer-follow .social-icons .svg-inline--fa {
|
||||||
|
color: rgba(102, 235, 97, 0.829) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Colors */
|
||||||
|
$text-color: #fff6fbb9 !default;
|
||||||
|
$primary-color: #790b61 !default;
|
||||||
|
$code-background-color: mix(#000, $background-color, 15%) !default;
|
||||||
|
$code-background-color-dark: mix(#000, $background-color, 20%) !default;
|
||||||
|
$link-color-hover: mix(#fff, $link-color, 25%) !default;
|
||||||
|
$link-color-visited: mix(#000, $link-color, 25%) !default;
|
||||||
|
|
||||||
|
@import "minimal-mistakes/skins/{{ site.minimal_mistakes_skin | default: 'default' }}"; // skin
|
||||||
|
@import "minimal-mistakes"; // main partials
|
Loading…
Reference in New Issue