This commit is contained in:
infominer33 2019-04-07 11:22:53 -04:00
parent 89e919e04d
commit f4dd6cbb94
3 changed files with 53 additions and 21 deletions

39
Gemfile
View File

@ -1,3 +1,36 @@
source 'https://rubygems.org'
gem 'github-pages', group: :jekyll_plugins
gem 'jekyll-include-cache', group: :jekyll_plugins
source "https://rubygems.org"
# Hello! This is where you manage which Jekyll version is used to run.
# When you want to use a different version, change it below, save the
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
#
# bundle exec jekyll serve
#
# This will help ensure the proper Jekyll version is running.
# Happy Jekylling!
# gem "github-pages", group: :jekyll_plugins
# To upgrade, run `bundle update`.
gem "jekyll"
gem "minimal-mistakes-jekyll"
gem "jekyll-target-blank"
gem "jekyll-optional-front-matter"
gem "jekyll-readme-index"
gem "jekyll-redirect-from"
gem "jekyll-mentions"
# The following plugins are automatically loaded by the theme-gem:
# gem "jekyll-paginate"
# gem "jekyll-sitemap"
# gem "jekyll-gist"
# gem "jekyll-feed"
# gem "jemoji"
# gem "jekyll-data"
# gem "jekyll-include-cache"
#
# If you have any other plugins, put them here!
group :jekyll_plugins do
end

View File

@ -259,7 +259,6 @@ plugins:
- jekyll-optional-front-matter
- jekyll-readme-index
- jekyll-redirect-from
- jekyll-seo-tag
- jekyll-mentions
jekyll-mentions:

View File

@ -8,20 +8,20 @@
@import "minimal-mistakes"; // main partials
html {
/* apply a natural box layout model to all elements */
box-sizing: border-box;
background-color: $background-color;
font-size: 13px;
@include breakpoint($medium) {
font-size: 16px;
}
@include breakpoint($large) {
font-size: 18px;
}
@include breakpoint($x-large) {
font-size: 20px;
}
}
/* apply a natural box layout model to all elements */
box-sizing: border-box;
background-color: $background-color;
font-size: 14px;
@include breakpoint($medium) {
font-size: 17px;
}
@include breakpoint($large) {
font-size: 19px;
}
@include breakpoint($x-large) {
font-size: 21px;
}
}