Skip to content

Instantly share code, notes, and snippets.

View ezos86's full-sized avatar

Eric Cavazos ezos86

View GitHub Profile
@ezos86
ezos86 / gist:0b2da876b90edd3dbe0c
Created December 8, 2014 20:29
If IE9 content example
<!--[if lt IE 9]>
<div class="modal open">
<div class="inner browser-not-supported">
<div class="modal-display-area">
<h2>You&#39;ll need to upgrade your browser to use our service</h2>
<p>
Unfortunately we can&#39;t support the browser you&#39;re using.
We want you to have the best possible experience.
</p>
<p>
@ezos86
ezos86 / MARKETO-MESSAGE-AFTER-FORM-SUBMIT.markdown
Last active August 29, 2015 14:11
MARKETO MESSAGE AFTER FORM SUBMIT

MARKETO MESSAGE AFTER FORM SUBMIT

Motha F**k annoying thing that works sometimes and doesn't others.. here is an example snippet for it.

REMEMBER: Wordpress = no spaces in javascript when adding.

A Pen by ezos86 on CodePen.

License.

@ezos86
ezos86 / Fact-Animation-Example.markdown
Created December 12, 2014 08:11
Fact Animation Example
@ezos86
ezos86 / Simple-Linear-Gradient.markdown
Created December 16, 2014 22:05
Simple Linear Gradient
@ezos86
ezos86 / Checkbox-Examples.markdown
Created December 18, 2014 08:28
Checkbox Examples

Checkbox Examples

This shows how to make fun checkboxes using Font Awesome and basic css.

A Pen by ezos86 on CodePen.

License.

@ezos86
ezos86 / Grid-Work---Breaks,-Transitions,-Types.markdown
Created December 20, 2014 20:52
Grid Work - Breaks, Transitions, Types

Grid Work - Breaks, Transitions, Types

Shows how different grids break differently, how to transition the grids at break using SCSS & Compass, and grids with/without gutters.

A Pen by ezos86 on CodePen.

License.

@ezos86
ezos86 / Waypoints-Example.markdown
Created December 22, 2014 06:04
Waypoints Example
@ezos86
ezos86 / Hover-Button-Effect---Grow-and-Text-Slide.markdown
Created January 29, 2015 22:30
Hover Button Effect - Grow and Text Slide

Hover Button Effect - Grow and Text Slide

Text slides up as you hover over the button and the image grows.

A Pen by ezos86 on CodePen.

License.

curl -u 'USERNAME' https://api.github.com/user/repos -d '{"name":"REPONAME","private": true}'
// to create a public repository, use "private": false (or leave the option off completely)
// GitHub will let you know if you are over your quote for private repositories!
@ezos86
ezos86 / sublime
Last active August 29, 2015 14:14
Launching Directory from CLI or Terminal with Sublime
#!/bin/bash
DIRECT=$1
if [ ! ${DIRECT} ]; then
echo "Launching Current Directory"
DIRECT='.'
fi
open -a "Sublime Text" $DIRECT -n