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
| var Collection = require('ampersand-collection'); | |
| var State = require('ampersand-state'); | |
| var Model = State.extend(); | |
| var model = new Model(); | |
| var col1 = new Collection(); | |
| col1.add(model); | |
| var col2 = new Collection(); |
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
| mixin respond-to($media) { | |
| @if $media == medium { | |
| @media only screen and (min-width: $breakMedium) { @content; } | |
| } | |
| @else if $media == large { | |
| @media only screen and (min-width: $breakLarge) { @content; } | |
| } | |
| body.lt-ie9 & { | |
| @content; //serve IE < 9 with all media queries | |
| } |
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
| <h1>Fancy Form</h1> | |
| <form> | |
| <fieldset> | |
| <legend> Classic Inputs</legend> | |
| <p>First we'll start off with some classic textinput fields for single lines, passwords and multiline-text. These have been around for a long time and form a backbone for most webforms.</p> | |
| <p> | |
| <input type="text" id="textinput" /> | |
| <label for="textinput">Input (text)</label> | |
| </p> | |
| <p> |
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> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <!-- IF PEN IS PRIVATE --> | |
| <!-- <meta name="robots" content="noindex"> --> | |
| <!-- END --> |