Skip to content

Instantly share code, notes, and snippets.

View devilshaircut's full-sized avatar

Jason B. devilshaircut

View GitHub Profile
csemjacobs
7:26 Okay, I'm going to head out in a few mins but since I got this topic started. Time to end it with some quick questions.
7:26 1 question per person please.
grimlock
7:26 42
jaironkalach
7:26 pulls up his list and looks for a quick one.
indy
7:26 yellow
7:26 no, blue!
@devilshaircut
devilshaircut / gist:dc132d270cd103aa3b5d
Last active August 29, 2015 14:20
Two letter words?
var alphabet = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"];
var vowels = ["a", "e", "i", "o", "u", "y", "h"];
var numberOfWords = 0;
var words = [];
var populatePossibilities = function(base) {
var newPossibilities = [];
var baseLength = base.length;
$(document).ready(function() {
$("#hamburger-icon").click(function() { // When the user clicks the #hamburger-icon HTML element ...
$("body").toggleClass("nav-expanded"); // ... toggle the <body> tag's ".nav-expanded" class on or off.
});
$("nav > ul > li > a").click(function() { // When the user clicks a navigation item in the hamburger menu ...
$("body").removeClass("nav-expanded"); // ... remove the ".nav-expanded" class (if it exists) from the <body> tag.
}); // This makes the menu a bit nicer to interact with for our users.
});
$(window).resize(function() { // When the window resizes ...
#page-content {
display: block;
width: 100%;
min-height: 100%;
padding: 70px 100px 40px 100px;
background: #ffffff;
position: relative;
z-index: 5;
@include box-sizing(border-box);
@include box-shadow(0 0 7px #000000);
#hamburger-icon {
display: none;
float: left;
width: 100%;
height: 50px;
margin: 0 0 20px 0;
padding: 0 20px;
line-height: 50px;
background: #cccccc;
cursor: pointer;
nav {
display: block;
width: 100%;
height: 50px;
padding: 0 100px;
margin: 0 0 20px 0;
line-height: 50px;
background: #cccccc;
position: fixed;
z-index: 7;
html {
height: 100%;
}
body {
height: 100%;
font-family: Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 20px;
min-width: 320px;
<div id="page-content">
<h3>A Header</h3>
<p>A Paragraph</p>
</div>
<!-- #page-content -->
<div id="hamburger-icon">
Hamburger.
</div>
<!-- #hamburger-icon -->
body.nav-expanded {
#page-content {
left: 75%;
}
#hamburger-icon {
left: 75%;
}
}
@import "compass/reset"; // As with all projects, override ludicrous browser default styles.
@import "compass/css3"; // We will use some CSS3 transitions (among other things) to make the interface more usable.