introducing: minimal mistakes

This commit is contained in:
infominer33 2019-03-28 19:40:33 -04:00
parent 0c0e191d72
commit 3db2701e10
766 changed files with 41906 additions and 1080 deletions

27
assets/css/main.scss Normal file
View file

@ -0,0 +1,27 @@
---
# Only the main Sass file needs front matter (the dashes are enough)
---
@charset "utf-8";
@import "minimal-mistakes/skins/{{ site.minimal_mistakes_skin | default: 'default' }}"; // skin
@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;
}
}