Skip to content

Instantly share code, notes, and snippets.

@owzzz
owzzz / text-Input-field.html
Last active August 29, 2015 14:01
Text Input Field
<input type="text" class="form-control" placeholder="Text input">
@owzzz
owzzz / Basic Form Example
Last active August 29, 2015 14:01
Basic Form Example
<form role="form">
<div class="form-group">
<label for="firstName">First Name</label>
<input type="text" class="form-control" required="" id="firstName" placeholder="First Name">
</div>
<div class="form-group">
<label for="lastName">Last Name</label>
<input type="text" class="form-control" required="" id="lastName" placeholder="Last Name">
</div>
<div class="form-group">
@owzzz
owzzz / Overlay
Last active August 29, 2015 14:01
Overlay Example
<div class="overlay mini-overlay main-overlay overlay-slideup">
<div class="overlay-inner">
<div class="center overlay-content">
<span class="overlay-close icon-close icon"></span>
<h2 class="alt-header-type-bold text-center">Sorry this size/color <br/> combination is out of stock</h2>
<p class="text-center">Please enter your email address below <br> and we will notify you when it become available</p>
<div class="form-group center form-group-inline">
<label for="emailAddress" class="hidden">Enter email address</label>
<input type="text" class="form-control" id="emailAddress" placeholder="Enter Email Address">
<button type="button" class="btn btn-secondary btn-outline-black">Submit</button>
@owzzz
owzzz / Body Copy
Last active August 29, 2015 14:01
Body Copy Example
<p>...</p>
@owzzz
owzzz / body_copy
Created May 21, 2014 15:43
Body Copy Example
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Perferendis maxime cumque autem. Possimus sunt voluptatibus totam labore neque deleniti cum dolorum dolores? Dolores, modi, aperiam, itaque esse consectetur adipisci officiis ipsam saepe asperiores officia blanditiis quas iusto deserunt voluptatum hic corporis labore quam vero doloremque tenetur dicta repudiandae voluptatem dolor!</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Perferendis maxime cumque autem. Possimus sunt voluptatibus totam labore neque deleniti cum dolorum dolores? Dolores, modi, aperiam, itaque esse consectetur adipisci officiis ipsam saepe asperiores officia blanditiis quas iusto deserunt voluptatum hic corporis labore quam vero doloremque tenetur dicta repudiandae voluptatem dolor!</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Perferendis maxime cumque autem. Possimus sunt voluptatibus totam labore neque deleniti cum dolorum dolores? Dolores, modi, aperiam, itaque esse consectetur adipisci
@owzzz
owzzz / Headings
Last active August 29, 2015 14:01
Typography Headers Example
<h1>H1 Heading</h1>
<h2>H2 Heading</h2>
<h3>H3 Heading</h3>
<h4>H4 Heading</h4>
<h1 class="alt-header-type-bold">H1 Alternative Heading</h1>
<h2 class="alt-header-type-bold">H2 Alternative Heading</h2>
<h3 class="alt-header-type-bold">H3 Alternative Heading</h3>
@owzzz
owzzz / javascript_resources.md
Created October 22, 2013 09:48 — forked from jookyboi/javascript_resources.md
Here are a set of libraries, plugins and guides which may be useful to your Javascript coding.

Libraries

  • jQuery - The de-facto library for the modern age. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers.
  • Backbone - Backbone.js gives structure to web applications by providing models with key-value binding and custom events, collections with a rich API of enumerable functions, views with declarative event handling, and connects it all to your existing API over a RESTful JSON interface.
  • AngularJS - Conventions based MVC framework for HTML5 apps.
  • Underscore - Underscore is a utility-belt library for JavaScript that provides a lot of the functional programming support that you would expect in Prototype.js (or Ruby), but without extending any of the built-in JavaScript objects.
  • lawnchair - Key/value store adapter for indexdb, localStorage
@owzzz
owzzz / 0_reuse_code.js
Created October 22, 2013 09:48
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@owzzz
owzzz / friends.json
Created October 2, 2013 10:54
Friends List
[{
"name": "Owain Llewellyn",
"id": "01",
"avatarUrl": "http://www.placehold.it/50x50"
},
{
"name": "Ignacio Gil",
"id": "02",
"avatarUrl": "http://www.placehold.it/50x50"
},
@owzzz
owzzz / panelProfile.json
Created October 2, 2013 10:54
Panella Profile
{
"name": "Panella1",
"id": "01",
"avatarUrl": "http://www.placehold.it/50x50",
"members": [{
"name": "Owain Llewellyn",
"id": "01",
"avatarUrl": "http://www.placehold.it/50x50"
},
{