Skip to content

Instantly share code, notes, and snippets.

View addisonbgross's full-sized avatar
🌶️
spicy

Addison addisonbgross

🌶️
spicy
View GitHub Profile
@addisonbgross
addisonbgross / inset_input.css
Created August 8, 2016 23:26 — forked from nrrrdcore/inset_input.css
The Perfect Inset Input CSS
input {
height: 34px;
width: 100%;
border-radius: 3px;
border: 1px solid transparent;
border-top: none;
border-bottom: 1px solid #DDD;
box-shadow: inset 0 1px 2px rgba(0,0,0,.39), 0 -1px 1px #FFF, 0 1px 0 #FFF;
}
@addisonbgross
addisonbgross / window-resize-delayed.js
Created July 14, 2016 22:23 — forked from james2doyle/window-resize-delayed.js
Window resize event listener with an added delay. This stops the resize event from firing constantly while resizing
function handleResize() {
clearTimeout(this.delayer);
this.delayer = setTimeout(someNamedFunction, 200);
}
window.addEventListener('resize', handleResize);