Forked from Steve Lombardi's Pen KwzPaw.
Forked from Captain Anonymous's Pen yyOBQV.
A Pen by Steve Lombardi on CodePen.
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Document</title> | |
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css"> | |
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css"> | |
<link rel="stylesheet" href="css/design_system.css"> |
// ---- | |
// Sass (v3.4.11) | |
// Compass (v1.0.3) | |
// ---- | |
$spacers: ( sm: 10px, med: 20px, lg: 30px, xlg: 40px); | |
$directions: (top, bottom); | |
// @each $spacer, $amt in $spacers { | |
// .spacer--#{$spacer}:hover { |
atom-text-editor { | |
background-color: @syntax-background-color; | |
color: @syntax-text-color; | |
} | |
atom-text-editor, :host { | |
.wrap-guide { | |
background-color: @syntax-wrap-guide-color; | |
} | |
.indent-guide { |
<h1 class="foo">Foo</h1> | |
<h1 class="bar">Foo</h1> | |
<h1 class="baz">Foo</h1> |
// ---- | |
// Sass (v3.4.9) | |
// Compass (v1.0.1) | |
// ---- | |
//Color chords | |
$chord: ( | |
(color1:orange, color2: magenta, color3: gray, color4: yellow), | |
(color1:magenta, color2: blue, color3: gray, color4: orange) |
<div class="color1"> </div> | |
<div class="color2"> </div> | |
<div class="color3"> </div> | |
<div class="color4"> </div> | |
<div class="color5"> </div> | |
<div class="color6"> </div> |
<div class="blue1"> </div> | |
<div class="blue2"> </div> | |
<div class="blue3"> </div> | |
<div class="blue4"> </div> | |
<div class="blue5"> </div> | |
<div class="blue6"> </div> |
// ---- | |
// Sass (v3.4.9) | |
// Compass (v1.0.1) | |
// ---- | |
$pb-blue: rgb(62,83,164); | |
$blue1: $pb-blue; | |
$blue2: scale-color($pb-blue, $lightness: 20%, $saturation: -5%); | |
$blue3: scale-color($pb-blue, $lightness: 40%, $saturation: 0%); |
Forked from Steve Lombardi's Pen KwzPaw.
Forked from Captain Anonymous's Pen yyOBQV.
A Pen by Steve Lombardi on CodePen.
// Generated on 2014-05-06 using generator-angular 0.8.0 | |
'use strict'; | |
// # Globbing | |
// for performance reasons we're only matching one level down: | |
// 'test/spec/{,*/}*.js' | |
// use this if you want to recursively match all subfolders: | |
// 'test/spec/**/*.js' | |
module.exports = function(grunt) { |