-
Notifications
You must be signed in to change notification settings - Fork 301
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
69 changed files
with
4,263 additions
and
6,632 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ dist/ | |
site/data/webpack.json | ||
/npm-debug.log | ||
yarn-error.log | ||
.netlify/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
12 | ||
16 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
module.exports = { | ||
plugins: { | ||
"postcss-import": {}, | ||
"postcss-preset-env": { | ||
plugins: [ | ||
["postcss-import",{}], | ||
["postcss-preset-env",{ | ||
browsers: "last 2 versions" | ||
}, | ||
"postcss-custom-media": {}, | ||
autoprefixer: {} | ||
} | ||
}], | ||
["postcss-custom-media",{}], | ||
["autoprefixer",{}] | ||
] | ||
}; |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
/*! TACHYONS v4.5.5 | http://tachyons.io */ | ||
|
||
/* | ||
* | ||
* ________ ______ | ||
* ___ __/_____ _________ /______ ______________________ | ||
* __ / _ __ `/ ___/_ __ \_ / / / __ \_ __ \_ ___/ | ||
* _ / / /_/ // /__ _ / / / /_/ // /_/ / / / /(__ ) | ||
* /_/ \__,_/ \___/ /_/ /_/_\__, / \____//_/ /_//____/ | ||
* /____/ | ||
* | ||
* TABLE OF CONTENTS | ||
* | ||
* 1. External Library Includes | ||
* - Reset.css | http://meyerweb.com/eric/tools/css/reset/ | ||
* 2. Tachyons Modules | ||
* 3. Variables | ||
* - Media Queries | ||
* - Colors | ||
* 4. Debugging | ||
* - Debug all | ||
* - Debug children | ||
* | ||
*/ | ||
|
||
|
||
/* External Library Includes */ | ||
@use './imports/_reset'; | ||
|
||
/* Modules */ | ||
@use './imports/_box-sizing'; | ||
@use './imports/_images'; | ||
@use './imports/_background-size'; | ||
@use './imports/_background-position'; | ||
@use './imports/_outlines'; | ||
@use './imports/_borders'; | ||
@use './imports/_border-radius'; | ||
@use './imports/_border-style'; | ||
@use './imports/_border-widths'; | ||
@use './imports/_border-colors'; | ||
@use './imports/_code'; | ||
@use './imports/_coordinates'; | ||
@use './imports/_clears'; | ||
@use './imports/_display'; | ||
@use './imports/_flexbox'; | ||
@use './imports/_floats'; | ||
@use './imports/_font-style'; | ||
@use './imports/_font-weight'; | ||
@use './imports/_forms'; | ||
@use './imports/_heights'; | ||
@use './imports/_line-height'; | ||
@use './imports/_links'; | ||
@use './imports/_lists'; | ||
@use './imports/_max-widths'; | ||
@use './imports/_widths'; | ||
@use './imports/_overflow'; | ||
@use './imports/_position'; | ||
@use './imports/_opacity'; | ||
@use './imports/_spacing'; | ||
@use './imports/_text-decoration'; | ||
@use './imports/_text-align'; | ||
@use './imports/_text-transform'; | ||
@use './imports/_type-scale'; | ||
@use './imports/_typography'; | ||
@use './imports/_utilities'; | ||
@use './imports/_visibility'; | ||
@use './imports/_white-space'; | ||
@use './imports/_vertical-align'; | ||
@use './imports/_states'; | ||
@use './imports/_z-index'; | ||
@use './imports/_styles'; | ||
@use './imports/_buttons'; | ||
@use './imports/_svg'; | ||
@use './imports/_cms'; | ||
|
||
/* Variables */ | ||
/* Importing here will allow you to override any variables in the modules */ | ||
@use './imports/_colors'; | ||
@use './imports/_media-queries'; | ||
@use './imports/_variables'; | ||
|
||
/* Debugging */ | ||
@use './imports/_debug-children'; | ||
@use './imports/_debug-grid'; | ||
|
||
/* Uncomment out the line below to help debug layout issues */ | ||
/*@use './imports/_debug';*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// JS Goes here - ES6 supported | ||
|
||
import "./css/main.css"; | ||
import "./css/main.scss"; | ||
|
||
// Say hello | ||
console.log("🦊 Hello! Edit me in src/index.js"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.