Skip to content

Instantly share code, notes, and snippets.

View svanderbleek's full-sized avatar
:shipit:
I’ll take the case

Sandy Vanderbleek svanderbleek

:shipit:
I’ll take the case
View GitHub Profile
body {
font-family: Helvetica;
}
textarea {
border-radius: 4px;
border: 1px solid rgba(0, 0, 0, .1);
resize: none;
width: 100%;
height: 160px;
@font-face {
font-family: BrannbollNY;
src: url('http://www.aringtypeface.com/font-test/brannboll_ny.ttf');
}
body {
font-family: Helvetica;
}
#page {
@font-face {
font-family: BrannbollNY;
src: url('http://www.aringtypeface.com/font-test/brannboll_ny.ttf');
}
body {
font-family: Helvetica;
}
#page {
@svanderbleek
svanderbleek / dabblet.css
Created November 15, 2013 22:19
Untitled
<div id="application">
<div id="account-panel">
</div>
<div id="admin-panel">
</div>
<div id="detail-panel">
</div>
</div>
@svanderbleek
svanderbleek / dabblet.css
Created November 15, 2013 01:27
Untitled
body {
font-family: Helvetica;
}
#content {
max-width: 960px;
margin: 0 auto;
}
#content-main {
@svanderbleek
svanderbleek / dabblet.css
Created November 15, 2013 01:02
Untitled
body {
font-family: Helvetica;
}
#brand {
background-color: black;
color: white;
padding: 10px;
}
@svanderbleek
svanderbleek / dabblet.css
Created November 14, 2013 23:09
Untitled
body {
font-family: Helvetica;
}
#brand {
background-color: black;
color: white;
padding: 10px;
}
@svanderbleek
svanderbleek / dabblet.css
Created November 2, 2013 20:00 — forked from anonymous/dabblet.css
Untitled
.text-center-image {
text-align: center;
font-weight: bold;
position: relative;
width: 200px;
height: 200px;
}
.text-center-image img {
opacity: .5
@svanderbleek
svanderbleek / gist:7080196
Created October 21, 2013 08:02
Quick and not so dirty Ember Route model polling with REST store
App.ImagesRoute = Ember.Route.extend
model: (->
@get('store').find('image')
).observes('pollCounter')
afterModel: ->
@pollModel()
pollModel: ->
setInterval (=>