This file contains hidden or 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
result = result && result.result ? result.result : result; |
This file contains hidden or 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
#!/bin/bash | |
mkdir -p ./src/styles | |
touch ./src/styles/main.scss | |
mkdir -p ./src/styles/{base,components,generic,objects,settings,tools,trumps} | |
touch ./src/styles/{base,components,generic,objects,settings,tools,trumps}/__index.scss | |
echo "// Base - Unclassed HTML elements (type selectors)" > ./src/styles/base/__index.scss | |
echo "// Components - Designed components, chunks of UI" > ./src/styles/components/__index.scss | |
echo "// Generic - Ground-zero styles (normalize, resets, box-sizing etc)" > ./src/styles/generic/__index.scss |
This file contains hidden or 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
// Show which media query you’re using | |
body { | |
padding-bottom: 4rem; | |
&:after { | |
position: fixed; | |
bottom: 0; | |
left: 0; |
This file contains hidden or 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 Gruntfile | |
* @version <%= projectVersion %> | |
* @author {@link https://github.com/<%= yourGitHub %> <%= yourName %>} | |
*/ | |
module.exports = function (grunt) { | |
// Time all the things | |
require('time-grunt')(grunt); | |
// Load all NPM tasks |
This file contains hidden or 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
{ | |
"name": "myProject", | |
"version": "1.0.0", | |
"authors": [ | |
"Daniel Furze <[email protected]>" | |
], | |
"description": "My awesome project.", | |
"main": "index.html", | |
"keywords": [ | |
"Bower" |
This file contains hidden or 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
{ | |
"name": "<%= _.slugify(projectName) %>", | |
"version": "0.0.0", | |
"dependencies": { | |
}, | |
"devDependencies": { | |
"sassface": "~1.2.0" | |
} | |
} |
This file contains hidden or 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
grunt.initConfig({ | |
pugpig_issues_xml: { | |
custom_options: { | |
options: { | |
root: 'content.xml', | |
dest: 'deploy/', | |
fileName: 'issues', | |
partName: 'all', | |
partSrc: 'publication1.zip' | |
}, |
This file contains hidden or 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
grunt.initConfig({ | |
pugpig_editions_xml: { | |
default_options: { | |
options: { | |
author: 'Building Blocks', | |
coverSrc: 'our_cover.jpg', | |
dest: 'deploy/', | |
editionName: 'publication1', | |
fileName: 'editions', | |
id: 'com.building-blocks.publication1', |
This file contains hidden or 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
grunt.initConfig({ | |
pugpig_contents_xml: { | |
default_options: { | |
options: { | |
author: pkg.author.name, | |
dest: 'dist/', | |
id: 'com.building-blocks.publication1', | |
fileName: 'content', | |
title: 'My first publication' | |
}, |
This file contains hidden or 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
//=My breakpoint variables | |
//Usually kept in _variables.scss | |
$breakpoint-extra-small: 20em; //320px | |
$breakpoint-small: 30em; //480px | |
$breakpoint-medium: 50em; //800px | |
$breakpoint-extra-medium: 65em; //1040px | |
$breakpoint-large: 80em; //1280px | |
$breakpoint-extra-large: 100em; //1600px |
NewerOlder