HTML preprocessors can make writing HTML more powerful or convenient. For instance, Markdown is designed to be easier to write and read for text documents and you could write a loop in Pug.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. So you don't have access to higher-up elements like the <html>
tag. If you want to add classes there that can affect the whole document, this is the place to do it.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. If you need things in the <head>
of the document, put that code here.
The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https.
CSS preprocessors help make authoring CSS easier. All of them offer things like variables and mixins to provide convenient abstractions.
It's a common practice to apply CSS to a page that styles elements such that they are consistent across all browsers. We offer two of the most popular choices: normalize.css and a reset. Or, choose Neither and nothing will be applied.
To get the best cross-browser support, it is a common practice to apply vendor prefixes to CSS properties and values that require them to work. For instance -webkit-
or -moz-
.
We offer two popular choices: Autoprefixer (which processes your CSS server-side) and -prefix-free (which applies prefixes via a script, client-side).
Any URLs added here will be added as <link>
s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.
You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.
You can also link to another Pen here (use the .css
URL Extension) and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, use the appropriate URL Extension and we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
JavaScript preprocessors can help make authoring JavaScript easier and more convenient.
Babel includes JSX processing.
Any URL's added here will be added as <script>
s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
Search for and use JavaScript packages from npm here. By selecting a package, an import
statement will be added to the top of the JavaScript editor for this package.
Using packages here is powered by esm.sh, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ESM usage.
All packages are different, so refer to their docs for how they work.
If you're using React / ReactDOM, make sure to turn on Babel for the JSX processing.
If active, Pens will autosave every 30 seconds after being saved once.
If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.
If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.
Visit your global Editor Settings.
<div class="wrapper">
<div class="col">
<h2>HTML5 Boilerplate</h2>
<pre class="language-markup">
<code><!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Place favicon.ico and apple-touch-icon(s) in the root directory -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<script src="js/vendor/modernizr-2.8.3.min.js"></script>
</head>
<body>
<!--[if lt IE 8]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<!-- Add your site or application content here -->
<p>Hello world! This is HTML5 Boilerplate.</p>
<script src="//ajax.googleapis.com/ajax/libs/jquery/{{JQUERY_VERSION}}/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-{{JQUERY_VERSION}}.min.js"></script>')</script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<script>
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=
function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;
e=o.createElement(i);r=o.getElementsByTagName(i)[0];
e.src='//www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));
ga('create','UA-XXXXX-X','auto');ga('send','pageview');
</script>
</body>
</html></code>
</pre>
</div>
<div class="col">
<h2>Normalize.css</h2>
<pre class="language-css">
<code>/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
* 1. Set default font family to sans-serif.
* 2. Prevent iOS text size adjust after orientation change, without disabling
* user zoom.
*/
@import 'some/file';
@import rem(padding, 10, 'auto');
div {
background-color: $red;
}
html {
font-family: sans-serif; /* 1 */
-ms-text-size-adjust: 100%; /* 2 */
-webkit-text-size-adjust: 100%; /* 2 */
}
/**
* Remove default margin.
*/
body {
margin: 0;
}
/* HTML5 display definitions
========================================================================== */
/**
* Correct `block` display not defined for any HTML5 element in IE 8/9.
* Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
* Correct `block` display not defined for `main` in IE 11.
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
display: block;
}
/**
* 1. Correct `inline-block` display not defined in IE 8/9.
* 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
*/
audio,
canvas,
progress,
video {
display: inline-block; /* 1 */
vertical-align: baseline; /* 2 */
}
/**
* Prevent modern browsers from displaying `audio` without controls.
* Remove excess height in iOS 5 devices.
*/
audio:not([controls]) {
display: none;
height: 0;
}
/**
* Address `[hidden]` styling not present in IE 8/9/10.
* Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
*/
[hidden],
template {
display: none;
}
/* Links
========================================================================== */
/**
* Remove the gray background color from active links in IE 10.
*/
a {
background: transparent;
}
/**
* Improve readability when focused and also mouse hovered in all browsers.
*/
a:active,
a:hover {
outline: 0;
}
/* Text-level semantics
========================================================================== */
/**
* Address styling not present in IE 8/9/10/11, Safari, and Chrome.
*/
abbr[title] {
border-bottom: 1px dotted;
}
/**
* Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
*/
b,
strong {
font-weight: bold;
}
/**
* Address styling not present in Safari and Chrome.
*/
dfn {
font-style: italic;
}
/**
* Address variable `h1` font-size and margin within `section` and `article`
* contexts in Firefox 4+, Safari, and Chrome.
*/
h1 {
font-size: 2em;
margin: 0.67em 0;
}
/**
* Address styling not present in IE 8/9.
*/
mark {
background: #ff0;
color: #000;
}
/**
* Address inconsistent and variable font size in all browsers.
*/
small {
font-size: 80%;
}
/**
* Prevent `sub` and `sup` affecting `line-height` in all browsers.
*/
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sup {
top: -0.5em;
}
sub {
bottom: -0.25em;
}
/* Embedded content
========================================================================== */
/**
* Remove border when inside `a` element in IE 8/9/10.
*/
img {
border: 0;
}
/**
* Correct overflow not hidden in IE 9/10/11.
*/
svg:not(:root) {
overflow: hidden;
}
/* Grouping content
========================================================================== */
/**
* Address margin not present in IE 8/9 and Safari.
*/
figure {
margin: 1em 40px;
}
/**
* Address differences between Firefox and other browsers.
*/
hr {
-moz-box-sizing: content-box;
box-sizing: content-box;
height: 0;
}
/**
* Contain overflow in all browsers.
*/
pre {
overflow: auto;
}
/**
* Address odd `em`-unit font size rendering in all browsers.
*/
code,
kbd,
pre,
samp {
font-family: monospace, monospace;
font-size: 1em;
}
/* Forms
========================================================================== */
/**
* Known limitation: by default, Chrome and Safari on OS X allow very limited
* styling of `select`, unless a `border` property is set.
*/
/**
* 1. Correct color not being inherited.
* Known issue: affects color of disabled elements.
* 2. Correct font properties not being inherited.
* 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
*/
button,
input,
optgroup,
select,
textarea {
color: inherit; /* 1 */
font: inherit; /* 2 */
margin: 0; /* 3 */
}
/**
* Address `overflow` set to `hidden` in IE 8/9/10/11.
*/
button {
overflow: visible;
}
/**
* Address inconsistent `text-transform` inheritance for `button` and `select`.
* All other form control elements do not inherit `text-transform` values.
* Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
* Correct `select` style inheritance in Firefox.
*/
button,
select {
text-transform: none;
}
/**
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
* and `video` controls.
* 2. Correct inability to style clickable `input` types in iOS.
* 3. Improve usability and consistency of cursor style between image-type
* `input` and others.
*/
button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button; /* 2 */
cursor: pointer; /* 3 */
}
/**
* Re-set default cursor for disabled elements.
*/
button[disabled],
html input[disabled] {
cursor: default;
}
/**
* Remove inner padding and border in Firefox 4+.
*/
button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0;
}
/**
* Address Firefox 4+ setting `line-height` on `input` using `!important` in
* the UA stylesheet.
*/
input {
line-height: normal;
}
/**
* It's recommended that you don't attempt to style these elements.
* Firefox's implementation doesn't respect box-sizing, padding, or width.
*
* 1. Address box sizing set to `content-box` in IE 8/9/10.
* 2. Remove excess padding in IE 8/9/10.
*/
input[type="checkbox"],
input[type="radio"] {
box-sizing: border-box; /* 1 */
padding: 0; /* 2 */
}
/**
* Fix the cursor style for Chrome's increment/decrement buttons. For certain
* `font-size` values of the `input`, it causes the cursor style of the
* decrement button to change from `default` to `text`.
*/
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
height: auto;
}
/**
* 1. Address `appearance` set to `searchfield` in Safari and Chrome.
* 2. Address `box-sizing` set to `border-box` in Safari and Chrome
* (include `-moz` to future-proof).
*/
input[type="search"] {
-webkit-appearance: textfield; /* 1 */
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box; /* 2 */
box-sizing: content-box;
}
/**
* Remove inner padding and search cancel button in Safari and Chrome on OS X.
* Safari (but not Chrome) clips the cancel button when the search input has
* padding (and `textfield` appearance).
*/
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
/**
* Define consistent border, margin, and padding.
*/
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em;
}
/**
* 1. Correct `color` not being inherited in IE 8/9/10/11.
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
*/
legend {
border: 0; /* 1 */
padding: 0; /* 2 */
}
/**
* Remove default vertical scrollbar in IE 8/9/10/11.
*/
textarea {
overflow: auto;
}
/**
* Don't inherit the `font-weight` (applied by a rule above).
* NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
*/
optgroup {
font-weight: bold;
}
/* Tables
========================================================================== */
/**
* Remove most spacing between table cells.
*/
table {
border-collapse: collapse;
border-spacing: 0;
}
td,
th {
padding: 0;
}</code>
</pre>
</div>
<div class="col">
<h2>Fast.js</h2>
<pre class="language-javascript">
<code>(function (module, exports) {
'use strict';
/**
* # Bind
* Analogue of `Function::bind()`.
*
* ```js
* var bind = require('fast.js').bind;
* var bound = bind(myfunc, this, 1, 2, 3);
*
* bound(4);
* ```
*
*
* @param {Function} fn The function which should be bound.
* @param {Object} thisContext The context to bind the function to.
* @param {mixed} args, ... Additional arguments to pre-bind.
* @return {Function} The bound function.
*/
exports.bind = function fastBind (fn, thisContext) {
var boundLength = arguments.length - 2,
boundArgs;
if (boundLength > 0) {
boundArgs = new Array(boundLength);
for (var i = 0; i < boundLength; i++) {
boundArgs[i] = arguments[i + 2];
}
return function () {
var length = arguments.length,
args = new Array(boundLength + length),
i;
for (i = 0; i < boundLength; i++) {
args[i] = boundArgs[i];
}
for (i = 0; i < length; i++) {
args[boundLength + i] = arguments[i];
}
return fn.apply(thisContext, args);
};
}
return function () {
return fn.apply(thisContext, arguments);
};
};
/**
* # Partial Application
*
* Partially apply a function. This is similar to `.bind()`,
* but with one important difference - the returned function is not bound
* to a particular context. This makes it easy to add partially
* applied methods to objects. If you need to bind to a context,
* use `.bind()` instead.
*
* > Note: This function does not support partial application for
* constructors, for that see `partialConstructor()`
*
*
* @param {Function} fn The function to partially apply.
* @param {mixed} args, ... Arguments to pre-bind.
* @return {Function} The partially applied function.
*/
exports.partial = function fastPartial (fn) {
var boundLength = arguments.length - 1,
boundArgs;
boundArgs = new Array(boundLength);
for (var i = 0; i < boundLength; i++) {
boundArgs[i] = arguments[i + 1];
}
return function () {
var length = arguments.length,
args = new Array(boundLength + length),
i;
for (i = 0; i < boundLength; i++) {
args[i] = boundArgs[i];
}
for (i = 0; i < length; i++) {
args[boundLength + i] = arguments[i];
}
return fn.apply(this, args);
};
};
/**
* # Partial Constructor
*
* Partially apply a constructor function. The returned function
* will work with or without the `new` keyword.
*
*
* @param {Function} fn The constructor function to partially apply.
* @param {mixed} args, ... Arguments to pre-bind.
* @return {Function} The partially applied constructor.
*/
exports.partialConstructor = function fastPartialConstructor (fn) {
var boundLength = arguments.length - 1,
boundArgs;
boundArgs = new Array(boundLength);
for (var i = 0; i < boundLength; i++) {
boundArgs[i] = arguments[i + 1];
}
return function partialed () {
var length = arguments.length,
args = new Array(boundLength + length),
i;
for (i = 0; i < boundLength; i++) {
args[i] = boundArgs[i];
}
for (i = 0; i < length; i++) {
args[boundLength + i] = arguments[i];
}
var thisContext = Object.create(fn.prototype),
result = fn.apply(thisContext, args);
if (result != null && (typeof result === 'object' || typeof result === 'function')) {
return result;
}
else {
return thisContext;
}
};
};
/**
* # Clone
*
* Clone an item. Primitive values will be returned directly,
* arrays and objects will be shallow cloned. If you know the
* type of input you're dealing with, call `.cloneArray()` or `.cloneObject()`
* instead.
*
* @param {mixed} input The input to clone.
* @return {mixed} The cloned input.
*/
exports.clone = function clone (input) {
if (!input || typeof input !== 'object') {
return input;
}
else if (Array.isArray(input)) {
return exports.cloneArray(input);
}
else {
return exports.cloneObject(input);
}
};
/**
* # Clone Array
*
* Clone an array or array like object (e.g. `arguments`).
* This is the equivalent of calling `Array.prototype.slice.call(arguments)`, but
* significantly faster.
*
* @param {Array} input The array or array-like object to clone.
* @return {Array} The cloned array.
*/
exports.cloneArray = function fastCloneArray (input) {
var length = input.length,
sliced = new Array(length),
i;
for (i = 0; i < length; i++) {
sliced[i] = input[i];
}
return sliced;
};
/**
* # Clone Object
*
* Shallow clone a simple object.
*
* > Note: Prototypes and non-enumerable properties will not be copied!
*
* @param {Object} input The object to clone.
* @return {Object} The cloned object.
*/
exports.cloneObject = function fastCloneObject (input) {
var keys = Object.keys(input),
total = keys.length,
cloned = {},
i, key;
for (i = 0; i < total; i++) {
key = keys[i];
cloned[key] = input[key];
}
return cloned;
};
/**
* # Concat
*
* Concatenate multiple arrays.
*
* > Note: This function is effectively identical to `Array.prototype.concat()`.
*
*
* @param {Array|mixed} item, ... The item(s) to concatenate.
* @return {Array} The array containing the concatenated items.
*/
exports.concat = function fastConcat () {
var length = arguments.length,
arr = [],
i, item, childLength, j;
for (i = 0; i < length; i++) {
item = arguments[i];
if (Array.isArray(item)) {
childLength = item.length;
for (j = 0; j < childLength; j++) {
arr.push(item[j]);
}
}
else {
arr.push(item);
}
}
return arr;
};
/**
* # Map
*
* A fast `.map()` implementation.
*
* @param {Array} subject The array (or array-like) to map over.
* @param {Function} fn The mapper function.
* @param {Object} thisContext The context for the mapper.
* @return {Array} The array containing the results.
*/
exports.map = function fastMap (subject, fn, thisContext) {
var length = subject.length,
result = new Array(length),
iterator = thisContext !== undefined ? bindInternal3(fn, thisContext) : fn,
i;
for (i = 0; i < length; i++) {
result[i] = iterator(subject[i], i, subject);
}
return result;
};
/**
* # Filter
*
* A fast `.filter()` implementation.
*
* @param {Array} subject The array (or array-like) to filter.
* @param {Function} fn The filter function.
* @param {Object} thisContext The context for the filter.
* @return {Array} The array containing the results.
*/
exports.filter = function fastFilter (subject, fn, thisContext) {
var length = subject.length,
result = [],
iterator = thisContext !== undefined ? bindInternal3(fn, thisContext) : fn,
i;
for (i = 0; i < length; i++) {
if (iterator(subject[i], i, subject)) {
result.push(subject[i]);
}
}
return result;
};
/**
* # Reduce
*
* A fast `.reduce()` implementation.
*
* @param {Array} subject The array (or array-like) to reduce.
* @param {Function} fn The reducer function.
* @param {mixed} initialValue The initial value for the reducer, defaults to subject[0].
* @param {Object} thisContext The context for the reducer.
* @return {mixed} The final result.
*/
exports.reduce = function fastReduce (subject, fn, initialValue, thisContext) {
var length = subject.length,
iterator = thisContext !== undefined ? bindInternal4(fn, thisContext) : fn,
i, result;
if (initialValue === undefined) {
i = 1;
result = subject[0];
}
else {
i = 0;
result = initialValue;
}
for (; i < length; i++) {
result = iterator(result, subject[i], i, subject);
}
return result;
};
/**
* # Reduce Right
*
* A fast `.reduceRight()` implementation.
*
* @param {Array} subject The array (or array-like) to reduce.
* @param {Function} fn The reducer function.
* @param {mixed} initialValue The initial value for the reducer, defaults to subject[0].
* @param {Object} thisContext The context for the reducer.
* @return {mixed} The final result.
*/
exports.reduceRight = function fastReduce (subject, fn, initialValue, thisContext) {
var length = subject.length,
iterator = thisContext !== undefined ? bindInternal4(fn, thisContext) : fn,
i, result;
if (initialValue === undefined) {
i = length - 2;
result = subject[length - 1];
}
else {
i = length - 1;
result = initialValue;
}
for (; i >= 0; i--) {
result = iterator(result, subject[i], i, subject);
}
return result;
};
/**
* # For Each
*
* A fast `.forEach()` implementation.
*
* @param {Array} subject The array (or array-like) to iterate over.
* @param {Function} fn The visitor function.
* @param {Object} thisContext The context for the visitor.
*/
exports.forEach = function fastForEach (subject, fn, thisContext) {
var length = subject.length,
iterator = thisContext !== undefined ? bindInternal3(fn, thisContext) : fn,
i;
for (i = 0; i < length; i++) {
iterator(subject[i], i, subject);
}
};
/**
* # Some
*
* A fast `.some()` implementation.
*
* @param {Array} subject The array (or array-like) to iterate over.
* @param {Function} fn The visitor function.
* @param {Object} thisContext The context for the visitor.
* @return {Boolean} true if at least one item in the array passes the truth test.
*/
exports.some = function fastSome (subject, fn, thisContext) {
var length = subject.length,
iterator = thisContext !== undefined ? bindInternal3(fn, thisContext) : fn,
i;
for (i = 0; i < length; i++) {
if (iterator(subject[i], i, subject)) {
return true;
}
}
return false;
};
/**
* # Index Of
*
* A faster `Array.prototype.indexOf()` implementation.
*
* @param {Array} subject The array (or array-like) to search within.
* @param {mixed} target The target item to search for.
* @param {Number} fromIndex The position to start searching from, if known.
* @return {Number} The position of the target in the subject, or -1 if it does not exist.
*/
exports.indexOf = function fastIndexOf (subject, target, fromIndex) {
var length = subject.length,
i = 0;
if (fromIndex !== undefined) {
i = fromIndex >> 0;
if (i < 0) {
i += length;
if (i < 0) {
i = 0;
}
}
}
for (; i < length; i++) {
if (subject[i] === target) {
return i;
}
}
return -1;
};
/**
* # Last Index Of
*
* A faster `Array.prototype.lastIndexOf()` implementation.
*
* @param {Array} subject The array (or array-like) to search within.
* @param {mixed} target The target item to search for.
* @param {Number} fromIndex The position to start searching backwards from, if known.
* @return {Number} The last position of the target in the subject, or -1 if it does not exist.
*/
exports.lastIndexOf = function fastLastIndexOf (subject, target, fromIndex) {
var length = subject.length,
i = length - 1;
if (fromIndex !== undefined) {
i = fromIndex >> 0;
if (i < 0) {
i += length;
}
}
for (; i >= 0; i--) {
if (subject[i] === target) {
return i;
}
}
return -1;
};
/**
* # Try
*
* Allows functions to be optimised by isolating `try {} catch (e) {}` blocks
* outside the function declaration. Returns either the result of the function or an Error
* object if one was thrown. The caller should then check for `result instanceof Error`.
*
* ```js
* var result = fast.try(myFunction);
* if (result instanceof Error) {
* console.log('something went wrong');
* }
* else {
* console.log('result:', result);
* }
* ```
*
* @param {Function} fn The function to invoke.
* @return {mixed} The result of the function, or an `Error` object.
*/
exports['try'] = function fastTry (fn) {
try {
return fn();
}
catch (e) {
if (!(e instanceof Error)) {
return new Error(e);
}
else {
return e;
}
}
};
// alias of `.try()` for older JS engines.
exports.attempt = exports['try'];
/**
* # Apply
*
* Faster version of `Function::apply()`, optimised for 8 arguments or fewer.
*
*
* @param {Function} subject The function to apply.
* @param {Object} thisContext The context for the function, set to undefined or null if no context is required.
* @param {Array} args The arguments for the function.
* @return {mixed} The result of the function invocation.
*/
exports.apply = function fastApply (subject, thisContext, args) {
return thisContext != null ? applyWithContext(subject, thisContext, args) : applyNoContext(subject, args);
};
/**
* Internal helper for applying a function with a context.
*/
function applyWithContext (subject, thisContext, args) {
switch (args.length) {
case 0:
return subject.call(thisContext);
case 1:
return subject.call(thisContext, args[0]);
case 2:
return subject.call(thisContext, args[0], args[1]);
case 3:
return subject.call(thisContext, args[0], args[1], args[2]);
case 4:
return subject.call(thisContext, args[0], args[1], args[2], args[3]);
case 5:
return subject.call(thisContext, args[0], args[1], args[2], args[3], args[4]);
case 6:
return subject.call(thisContext, args[0], args[1], args[2], args[3], args[4], args[5]);
case 7:
return subject.call(thisContext, args[0], args[1], args[2], args[3], args[4], args[5], args[6]);
case 8:
return subject.call(thisContext, args[0], args[1], args[2], args[3], args[4], args[5], args[6], args[7]);
default:
return subject.apply(thisContext, args);
}
}
/**
* Internal helper for applying a function without a context.
*/
function applyNoContext (subject, args) {
switch (args.length) {
case 0:
return subject();
case 1:
return subject(args[0]);
case 2:
return subject(args[0], args[1]);
case 3:
return subject(args[0], args[1], args[2]);
case 4:
return subject(args[0], args[1], args[2], args[3]);
case 5:
return subject(args[0], args[1], args[2], args[3], args[4]);
case 6:
return subject(args[0], args[1], args[2], args[3], args[4], args[5]);
case 7:
return subject(args[0], args[1], args[2], args[3], args[4], args[5], args[6]);
case 8:
return subject(args[0], args[1], args[2], args[3], args[4], args[5], args[6], args[7]);
default:
return subject.apply(undefined, args);
}
}
/**
* Internal helper to bind a function known to have 3 arguments
* to a given context.
*/
function bindInternal3 (func, thisContext) {
return function (a, b, c) {
return func.call(thisContext, a, b, c);
};
}
/**
* Internal helper to bind a function known to have 4 arguments
* to a given context.
*/
function bindInternal4 (func, thisContext) {
return function (a, b, c, d) {
return func.call(thisContext, a, b, c, d);
};
}
})(
typeof module === 'undefined' ? { exports: window.fast = {} } : module,
typeof exports === 'undefined' ? window.fast : exports
);</code>
</pre>
</div>
</div>
/*
CUSTOM PRISM THEME
*/
// VARS
$base00: hsl(10, 1%, 10%);
$base01: hsl(10, 1%, 15%);
$base02: hsl(10, 2%, 30%);
$base03: hsl(10, 2%, 40%);
$base04: hsl(10, 3%, 50%);
$base05: hsl(10, 4%, 60%);
$base06: hsl(10, 9%, 87%);
$base07: hsl(10, 10%, 97%);
$base08: hsl(0, 65%, 50%);
$base09: hsl(20, 80%, 48%);
$base0A: hsl(40, 100%, 45%);
$base0B: hsl(170, 100%, 30%);
$base0C: hsl(190, 70%, 35%);
// $base0D: hsl(220, 65%, 55%);
$base0D: hsl(220, 65%, 50%);
// $base0E: hsl(295, 55%, 52%);
$base0E: hsl(295, 60%, 48%);
$base0F: hsl(340, 80%, 45%);
$red: $base08;
$orange: $base09;
$yellow: $base0A;
$green: $base0B;
$cyan: $base0C;
$blue: $base0D;
$violet: $base0E;
$magenta: $base0F;
// prism.js Coy theme for JavaScript, CoffeeScript, CSS and HTML
// Based on https://github.com/tshedor/workshop-wp-theme (Example: http://workshop.kansan.com/category/sessions/basics or http://workshop.timshedor.com/category/sessions/basics);
// @author Tim Shedor
code[class*="language-"],
pre[class*="language-"] {
color: $base01;
font-family: Consolas, Menlo, Monaco, 'Andale Mono', 'DejaVu Sans Mono', "Courier New", Courier, monospace;
direction: ltr;
text-align: left;
white-space: pre-wrap;
word-spacing: normal;
word-break: normal;
line-height: 1.5;
-moz-tab-size: 4;
hyphens: none;
}
// Code blocks
pre[class*="language-"] {
position: relative;
margin: .5em 0;
box-shadow: -1px 0px 0px 0px $cyan, 0px 0px 0px 1px $base06;
border-left: 10px solid $cyan;
background-image: linear-gradient(transparent 50%, transparentize($blue,0.95) 50%);
background-size: 3em 3em;
background-origin: content-box;
overflow: visible;
max-height: 30em;
}
code[class*="language"] {
max-height: inherit;
height: 100%;
padding: 0 1em;
display: block;
overflow: auto;
}
// Margin bottom to accomodate shadow
:not(pre) > code[class*="language-"],
pre[class*="language-"] {
background-color: adjust-color($base07,$lightness: 1.75%);
box-sizing: border-box;
margin-bottom: 1em;
}
// Inline code
:not(pre) > code[class*="language-"] {
position: relative;
padding: .2em;
border-radius: 0.3em;
color: $red;
border: 1px solid transparentize($base02,0.1);
}
pre[class*="language-"]:before,
pre[class*="language-"]:after {
content: '';
z-index: -2;
display: block;
position: absolute;
bottom: 0.75em;
left: 0.18em;
width: 40%;
height: 20%;
box-shadow: 0px 13px 8px $base05;
transform: rotate(-2deg);
}
:not(pre) > code[class*="language-"]:after,
pre[class*="language-"]:after {
right: 0.75em;
left: auto;
transform: rotate(2deg);
}
.token.comment {
font-style: italic;
}
.token.comment,
.token.block-comment,
.token.prolog,
.token.doctype,
.token.cdata {
color: $base03;
}
.token.punctuation {
color: $base02;
}
.token.property,
.token.tag,
.token.tag-id,
.token.boolean,
.token.number,
.token.function-name,
.token.constant,
.token.symbol {
color: $red;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.function,
.token.builtin {
color: $green;
}
.token.operator,
.token.entity,
.token.url,
.token.variable,
.token.pseudo-class,
.language-css .token.string,
.style .token.string {
color: $orange;
background: rgba(white, 0.5);
}
.token.atrule,
.token.attr-value,
.token.keyword,
.token.class-name {
color: $cyan;
}
.token.regex,
.token.important {
color: adjust-color($yellow, $lightness: -10%);
}
.token.important {
font-weight: normal;
}
.token.entity {
cursor: help;
}
.namespace {
opacity: .7;
}
@media screen and (max-width: 767px) {
pre[class*="language-"]:before,
pre[class*="language-"]:after {
bottom: 14px;
box-shadow: none;
}
}
// Plugin styles
.token.tab:not(:empty):before,
.token.cr:before,
.token.lf:before {
color: $base06;
}
// Plugin styles: Line Numbers
pre[class*="language-"].line-numbers {
padding-left: 0;
}
pre[class*="language-"].line-numbers code {
padding-left: 3.8em;
}
pre[class*="language-"].line-numbers .line-numbers-rows {
left: 0;
}
/*
GENERAL "MEH" STYLES
*/
body {
margin: 0;
background-color: $base07;
padding: 40px;
}
.wrapper {
&:after {
content: "";
display: table;
clear: both;
}
}
.col pre {
max-height: 250px;
}
h2 {
color: $base01;
text-shadow: 0 1px 2px rgba(0,0,0, .2);
}
a {
text-decoration: none;
color: $red;
}
// scrollbars in webkit
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(black,0.3);
border-radius: 3px;
background-color: $base07;
}
::-webkit-scrollbar {
width: .75em;
height: .75em;
background-color: $base06;
}
::-webkit-scrollbar-thumb {
border-radius: 3px;
-webkit-box-shadow: inset 0 0 6px rgba(black,.3);
background-color: $base06;
}
::-webkit-scrollbar-thumb:window-inactive {
background-color: $base07;
}
Also see: Tab Triggers