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
input[type="text"], | |
input[type="email"], | |
input[type="tel"], | |
input[type="fax"], | |
input[type="date"], | |
input[type="datetime"], | |
input[type="month"], | |
input[type="password"], | |
input[type="time"], | |
input[type="url"], |
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
<iframe width="100%" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=q&source=s_q&hl=en&q=street_address, city_name state, zip&ie=UTF8&hq=&hnear=street_address,+city_name,+state,+zip&output=embed&iwloc=near"></iframe> |
This file has been truncated, but you can view the full file.
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
window.EmberENV ={"FEATURES":{}};var runningTests = false; ;var define,requireModule,require,requirejs;(function(){ var _isArray;if(!Array.isArray){_isArray = function(x){return Object.prototype.toString.call(x)=== "[object Array]";};}else{_isArray = Array.isArray;} var registry ={},seen ={},state ={};var FAILED = false; define = function(name,deps,callback){ if(!_isArray(deps)){callback = deps;deps =[];} registry[name] ={deps:deps,callback:callback};}; function reify(deps,name,seen){var length = deps.length;var reified = new Array(length);var dep;var exports; for(var i = 0,l = length;i < l;i++){dep = deps[i];if(dep === 'exports'){exports = reified[i] = seen;}else{reified[i] = require(resolve(dep,name));}} return{deps:reified,exports:exports};} requirejs = require = requireModule = function(name){if(state[name] !== FAILED && seen.hasOwnProperty(name)){return seen[name];} if(!registry[name]){throw new Error('Could not find module ' + name);} var mod = registry[name];var reified;var module;var loaded = fals |
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
<p>Check it out. This content is loaded from an external Gist.</p> | |
<ol> | |
<li>Use XMLHttpRequest() and point to <a href="https://gist.github.com/jondaiello/d94eb273e8795eca4ab335de01e6e418" target="_blank">this gist</a> and store it in a JS variable.</li> | |
<li>Write it to the page.</li> | |
<li>If you're seeing this on non-GitHub page than that's what has happened.</li> | |
</ol> |
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
// Demo at http://codepen.io/jondaiello/full/YWRbOx/ | |
/* This mixin is for generating CSS arrows on a box */ | |
@mixin box-arrow($arrowDirection, $arrowColor, $arrowSize: 10px) { | |
position: relative; | |
z-index: 10; | |
&::after { | |
content: ''; | |
width: 0; | |
height: 0; |