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
| %clearfix { | |
| &:after { | |
| clear: both; | |
| content: ''; | |
| display: table; | |
| } | |
| } | |
| // Media module, stolen from http://ianstormtaylor.com/oocss-plus-sass-is-the-best-way-to-css/ |
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
| doctype html | |
| <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> | |
| <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> | |
| <!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> | |
| <!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]--> | |
| head | |
| meta(charset='utf-8') | |
| meta(http-equiv='X-UA-Compatible', content='IE=edge,chrome=1') | |
| title | |
| meta(name='description', content='') |
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
| # | |
| # Gruntfile only for my own usage, don't care about others ;) | |
| # | |
| module.exports = (grunt) -> | |
| # Project configuration. | |
| require("matchdep").filterDev("grunt-*").forEach grunt.loadNpmTasks | |
| grunt.initConfig | |
| pkg: grunt.file.readJSON("package.json") | |
| # Minify Javascript. | |
| uglify: |
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
| "1-4-2014", "2-4-2014", "3-4-2014", "4-4-2014", "5-4-2014", "6-4-2014", "7-4-2014", "8-4-2014", "9-4-2014", "10-4-2014", "11-4-2014", "12-4-2014", "13-4-2014", "14-4-2014", "16-4-2014", "17-4-2014", "18-4-2014", "19-4-2014", "20-4-2014", "21-4-2014", "22-4-2014", "23-4-2014", "24-4-2014", "25-4-2014", "26-4-2014", "27-4-2014", "28-4-2014", "29-4-2014", "30-4-2014", "1-5-2014", "2-5-2014", "3-5-2014", "4-5-2014", "5-5-2014", "6-5-2014", "7-5-2014", "8-5-2014", "9-5-2014", "10-5-2014" |
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
| <!DOCTYPE html> | |
| <html class="no-js"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <title>Susy-Test</title> | |
| <meta name="description" content=""> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <link rel="stylesheet" href="main.css"> | |
| </head> |
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
| # OSX for Hackers (Mavericks/Yosemite) | |
| # | |
| # Source: https://gist.github.com/brandonb927/3195465 | |
| #!/bin/sh | |
| # Some things taken from here | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # Ask for the administrator password upfront |
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
| # Customize BASH PS1 prompt to show current GIT repository and branch. | |
| # by Mike Stewart - http://MediaDoneRight.com | |
| # SETUP CONSTANTS | |
| # Bunch-o-predefined colors. Makes reading code easier than escape sequences. | |
| # I don't remember where I found this. o_O | |
| # Reset | |
| Color_Off="\[\033[0m\]" # Text Reset |
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
| # SASS | |
| .sass-cache | |
| *.css.map | |
| # OsX | |
| .DS_Store | |
| .AppleDouble | |
| .LSOverride | |
| ## Icon must end with two \r |
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
| $element-separator: '__' !default; | |
| $modifier-separator: '--' !default; | |
| @function contains-modifier($selector) { | |
| $selector: selector-to-string($selector); | |
| @if str-index($selector, $modifier-separator) { | |
| @return true; | |
| } @else { | |
| @return false; | |
| } |
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
| // _decimal.scss | MIT License | gist.github.com/terkel/4373420 | |
| // Round a number to specified digits. | |
| // | |
| // @param {Number} $number A number to round | |
| // @param {Number} [$digits:0] Digits to output | |
| // @param {String} [$mode:round] (round|ceil|floor) How to round a number | |
| // @return {Number} A rounded number | |
| // @example | |
| // decimal-round(0.333) => 0 |
OlderNewer