Skip to content

Instantly share code, notes, and snippets.

View eboyer's full-sized avatar
🦊

Eric Boyer eboyer

🦊
View GitHub Profile
benmills [~benmills@98.227.88.122] entered the room. (12:37:40 PM)
12:37:45 PM benmills: Yall on yo yet?
benmills left the room (quit: Quit: leaving). (12:51:08 PM)
benmills [~circuser-@2601:d:6800:4a:5522:8df3:28c6:2f8c] entered the room. (12:55:24 PM)
12:58:19 PM thanexor: way
12:58:21 PM thanexor: wat*/**
12:58:34 PM benmills: way
12:58:52 PM thanexor: ben you kept your promise
12:59:03 PM thanexor: i am thoroughly surprised
1:01:38 PM benmills: me too
&._big {
max-height: 39px;
overflow: hidden;
border-top: 1px solid #fff;
border-bottom: 1px solid #fff;
transition: all 150ms cubic-bezier(.2,1,.2,1);
transform: translatez(0);
.filter-name {
font-size: 17px;
font-weight: 400;
this._$drawerContent.on(transitionEvent, function() {
if (self.props.selected) {
self.isOpening = false;
self._drawerStyles = {
maxHeight: 'none',
WebkitTransition: 'none',
transition: 'none'
};
self.forceUpdate(); // skips shouldComponentUpdate
}
.sprout-account-picker {
position: relative;
z-index: 5;
display: block;
width: 100%;
min-height: 40px;
color: $gray40;
background-color: $gray90;
border: 0;
border-bottom: 1px solid $gray70;
@eboyer
eboyer / gist:f1dc143e1bafd04aaa71
Last active August 29, 2015 14:27
Gaming History
0:1:2179
http://www.legit-proof.com/search/?method=guid&query=0%3A1%3A2179
CEVO - http://cevo.com/member/31969/
ESEA - https://play.esea.net/users/223354
--
Online History (113-76 Overall CS:GO League Record)
-
@eboyer
eboyer / full CSS3 background
Created December 1, 2010 20:57
full page image background, with a fix for IE
html {
background: url(images/myBackground.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
/* FOR IE
dl.expand{
float: left; display: inline;
width: 315px;
margin: 0 20px 14px 0;
&:nth-child(even){ margin-right: 0; }
dt{
border-bottom: 1px solid #fff;
position: relative;
cursor: pointer;
h3{ margin: 0; border-bottom: 1px solid #cecece; }
@eboyer
eboyer / gist:1100377
Created July 22, 2011 20:41
Fade in content after Typekit is loaded
odc.fadeContent = function(){
//Content you want to animate in, hide on load.
$("div.inner").hide();
var htmlInterval = window.setInterval(function() {
var htmlClass = $('html').attr('class');
if(htmlClass.indexOf('wf-active') >= 0) {
//Content you want faded in.
$("div.inner").fadeIn(1500, function(){
//Clear interval after animation completes.
@eboyer
eboyer / gist:1105275
Created July 25, 2011 21:26
Shaun Crittenden Modals
concentrated.modals = function(btn,modal){
var $btn = $(btn);
var $modal = $(modal);
var $overlay = $('#overlay');
var $close = $('a.close', $modal);
// set overlay height
var docHeight = $(document).height();
$overlay.css({ height : docHeight });
@eboyer
eboyer / gist:1217810
Created September 14, 2011 21:15
typekit loading
//Fade in content after Typekit loads.
odc.fadeContent = function(){
//Content you want to animate in, hide on load.
$("div.inner").hide();
var htmlInterval = window.setInterval(function() {
var htmlClass = $('html').attr('class');
if(htmlClass.indexOf('wf-active') >= 0) {
//Content you want faded in.
$("div.inner").fadeIn(1500, function(){