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
options: | |
formatter: stylish | |
files: | |
include: '**/*.s+(a|c)ss' | |
rules: | |
# Extends | |
extends-before-mixins: 1 | |
extends-before-declarations: 1 | |
placeholder-in-extend: 0 |
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
$dark-blue: #344141 | |
$light-blue: #acebae | |
$lighter-blue: #dce2e9 | |
$yellow: #ffff9c | |
$light-green: #c9de55 | |
$dark-green: #7d9100 | |
$red: #d95b5d | |
$dark-red: #a8494a | |
$white: #FFFFFF |
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
<head> | |
<link rel="apple-touch-icon-precomposed" href="apple-touch-icon-57x57.png"> | |
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="apple-touch-icon-72x72.png"> | |
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="apple-touch-icon-114x114.png"> | |
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="apple-touch-icon-144x144.png"> | |
</head> |
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
<!-- | |
Stupid simple css cache bust for Jekyll using site generation timestamp year/month/day/hour/minute/seconds | |
Output example: v=20130403134355 | |
--> | |
<link rel="stylesheet" href="/css/styles.css?v={{ site.time | date: '%Y%m%d%H%M%S' }}"> |
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
// thanks: https://gist.github.com/stammy/4442615 | |
$mq-mobile-portrait: 20em !default; // 20em * 16px = 320px | |
$mq-mobile-landscape: 30em !default; // 40em * 16px = 480px | |
$mq-tablet-portrait: 48em !default; // 48em * 16px = 768px | |
$mq-tablet-landscape: 64em !default; // 64em * 16px = 1024px | |
$mq-desktop : 75em !default; // 75em * 16px = 1200px | |
// Both portrait and landscape | |
@mixin mobile-only { |